updated to use handlers

This commit is contained in:
Spencer Smith 2016-05-12 12:18:38 -07:00
parent 9b8a757526
commit 66d9a6ebbc
2 changed files with 16 additions and 9 deletions

View file

@ -0,0 +1,15 @@
---
- name: restart docker
command: /bin/true
notify:
- reload systemd
- reload docker
- name : reload systemd
shell: systemctl daemon-reload
when: ansible_service_mgr == "systemd"
- name: reload docker
service:
name: docker
state: restarted

View file

@ -6,12 +6,4 @@
template:
src: http-proxy.conf.j2
dest: /etc/systemd/system/docker.service.d/http-proxy.conf
register: systemddockerproxy
- name: reload systemctl daemons
shell: systemctl daemon-reload
when: systemddockerproxy.changed
- name: restart docker so configs are applies
service: name=docker state=restarted
when: systemddockerproxy.changed
notify: restart docker