blob: c60c2115a41aade0119595da91e8471ba5f88119 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- name: restart flanneld
become: yes
systemd: name=flanneld state=restarted
- name: restart docker
become: yes
systemd:
name: "{{ openshift.docker.service_name }}"
state: restarted
|