Przeglądaj źródła

Setup tuned after the node has been restarted.

Jiri Mencak 7 lat temu
rodzic
commit
ddeee3f5a5
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      roles/openshift_node/tasks/config.yml

+ 4 - 4
roles/openshift_node/tasks/config.yml

@@ -2,10 +2,6 @@
 - name: Install the systemd units
   include: systemd_units.yml
 
-- name: Setup tuned
-  include: tuned.yml
-  static: yes
-
 - name: Start and enable openvswitch service
   systemd:
     name: openvswitch.service
@@ -99,5 +95,9 @@
     msg: Node failed to start please inspect the logs and try again
   when: node_start_result | failed
 
+- name: Setup tuned
+  include: tuned.yml
+  static: yes
+
 - set_fact:
     node_service_status_changed: "{{ node_start_result | changed }}"