Browse Source

updated names and removed checks for rhel, as we already know we have systemd inside that play

pull/230/head
Spencer Smith 8 years ago
parent
commit
962155e463
1 changed files with 7 additions and 11 deletions
  1. 18
      roles/docker/tasks/systemd-proxies.yml

18
roles/docker/tasks/systemd-proxies.yml

@ -1,21 +1,17 @@
--- ---
- name: create docker service directory for RHEL family
- name: create docker service directory for systemd
file: path=/etc/systemd/system/docker.service.d state=directory 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
- name: drop docker environment conf to enable proxy usage
template: template:
src: http-proxy.conf.j2 src: http-proxy.conf.j2
dest: /etc/systemd/system/docker.service.d/http-proxy.conf dest: /etc/systemd/system/docker.service.d/http-proxy.conf
when: ansible_distribution in ["CentOS","RedHat"] and
ansible_distribution_major_version >= 7
register: rheldockerproxy
register: systemddockerproxy
- name: reload systemctl daemons for RHEL family
- name: reload systemctl daemons
shell: systemctl daemon-reload shell: systemctl daemon-reload
when: rheldockerproxy.changed
when: systemddockerproxy.changed
- name: restart docker for RHEL family
- name: restart docker so configs are applies
service: name=docker state=restarted service: name=docker state=restarted
when: rheldockerproxy.changed
when: systemddockerproxy.changed
Loading…
Cancel
Save