summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/handlers/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/openshift_node/handlers/main.yml')
-rw-r--r--roles/openshift_node/handlers/main.yml25
1 files changed, 21 insertions, 4 deletions
diff --git a/roles/openshift_node/handlers/main.yml b/roles/openshift_node/handlers/main.yml
index b102c1b18..779916335 100644
--- a/roles/openshift_node/handlers/main.yml
+++ b/roles/openshift_node/handlers/main.yml
@@ -1,4 +1,19 @@
---
+- name: restart NetworkManager
+ systemd:
+ name: NetworkManager
+ state: restarted
+ enabled: True
+ when:
+ - (not skip_node_svc_handlers | default(False) | bool)
+
+- name: restart dnsmasq
+ systemd:
+ name: dnsmasq
+ state: restarted
+ when:
+ - (not skip_node_svc_handlers | default(False) | bool)
+
- name: restart openvswitch
systemd:
name: openvswitch
@@ -9,7 +24,7 @@
- openshift_node_use_openshift_sdn | bool
- not openshift_node_bootstrap
register: l_openshift_node_stop_openvswitch_result
- until: not l_openshift_node_stop_openvswitch_result | failed
+ until: not (l_openshift_node_stop_openvswitch_result is failed)
retries: 3
delay: 30
notify:
@@ -19,14 +34,14 @@
pause: seconds=15
when:
- (not skip_node_svc_handlers | default(False) | bool)
- - openshift.common.is_containerized | bool
+ - openshift_is_containerized | bool
- name: restart node
systemd:
- name: "{{ openshift.common.service_type }}-node"
+ name: "{{ openshift_service_type }}-node"
state: restarted
register: l_openshift_node_restart_node_result
- until: not l_openshift_node_restart_node_result | failed
+ until: not (l_openshift_node_restart_node_result is failed)
retries: 3
delay: 30
when:
@@ -36,3 +51,5 @@
- name: reload systemd units
command: systemctl daemon-reload
+ when:
+ - (not skip_node_svc_handlers | default(False) | bool)