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