updated to support all OSes using systemd

This commit is contained in:
Spencer Smith
2016-05-12 09:03:11 -07:00
parent ebf8231c9a
commit c90c981bb2
2 changed files with 2 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
---
- name: create docker service directory for RHEL family
file: path=/etc/systemd/system/docker.service.d state=directory
when: ansible_distribution in ["CentOS","RedHat"] and
ansible_distribution_major_version >= 7
- name: drop docker environment for RHEL family
template:
src: http-proxy.conf.j2
dest: /etc/systemd/system/docker.service.d/http-proxy.conf
when: ansible_distribution in ["CentOS","RedHat"] and
ansible_distribution_major_version >= 7
register: rheldockerproxy
- name: reload systemctl daemons for RHEL family
shell: systemctl daemon-reload
when: rheldockerproxy.changed
- name: restart docker for RHEL family
service: name=docker state=restarted
when: rheldockerproxy.changed