mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 02:37:31 +01:00
Ensure firewalld is installed and Docker launcher after firewalld
Some CentOS 7 hosts may not have firewalld installed. We shouldn't expect it to be, but should ensure by ourselves that it is. Docker likes to mess around with iptables forwarding rules, so it ought to start after firewalld.
This commit is contained in:
parent
91bb06e4be
commit
02bdb7c7bc
@ -23,15 +23,16 @@
|
|||||||
- bash-completion
|
- bash-completion
|
||||||
- docker-ce
|
- docker-ce
|
||||||
- docker-python
|
- docker-python
|
||||||
|
- firewalld
|
||||||
- ntp
|
- ntp
|
||||||
when: ansible_distribution == 'CentOS'
|
when: ansible_distribution == 'CentOS'
|
||||||
|
|
||||||
- name: Ensure Docker is started and autoruns
|
|
||||||
service: name=docker state=started enabled=yes
|
|
||||||
|
|
||||||
- name: Ensure firewalld is started and autoruns
|
- name: Ensure firewalld is started and autoruns
|
||||||
service: name=firewalld state=started enabled=yes
|
service: name=firewalld state=started enabled=yes
|
||||||
|
|
||||||
|
- name: Ensure Docker is started and autoruns
|
||||||
|
service: name=docker state=started enabled=yes
|
||||||
|
|
||||||
- name: Ensure ntpd is started and autoruns
|
- name: Ensure ntpd is started and autoruns
|
||||||
service: name=ntpd state=started enabled=yes
|
service: name=ntpd state=started enabled=yes
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user