diff options
| -rw-r--r-- | roles/openshift_node/tasks/main.yml | 6 | ||||
| -rw-r--r-- | roles/openshift_node/tasks/systemd_units.yml | 6 | 
2 files changed, 6 insertions, 6 deletions
| diff --git a/roles/openshift_node/tasks/main.yml b/roles/openshift_node/tasks/main.yml index 9c71af6d9..228c29b6c 100644 --- a/roles/openshift_node/tasks/main.yml +++ b/roles/openshift_node/tasks/main.yml @@ -55,12 +55,6 @@  - name: Install the systemd units    include: systemd_units.yml -- name: Reload systemd units -  command: systemctl daemon-reload -  when: openshift.common.is_containerized | bool and (install_node_result | changed or install_ovs_sysconfig | changed or install_node_dep_result | changed) -  notify: -  - restart node -  - name: Start and enable openvswitch docker service    service: name=openvswitch.service enabled=yes state=started    when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool diff --git a/roles/openshift_node/tasks/systemd_units.yml b/roles/openshift_node/tasks/systemd_units.yml index 39e5386d4..025cb567e 100644 --- a/roles/openshift_node/tasks/systemd_units.yml +++ b/roles/openshift_node/tasks/systemd_units.yml @@ -47,3 +47,9 @@        line: "IMAGE_VERSION={{ openshift_image_tag }}"    notify:    - restart node + +- name: Reload systemd units +  command: systemctl daemon-reload +  when: openshift.common.is_containerized | bool and (install_node_result | changed or install_ovs_sysconfig | changed or install_node_dep_result | changed) +  notify: +  - restart node | 
