Do not force firewalld on people

In most cases, there's not really a need to touch the system
firewall, as Docker manages iptables by itself
(see https://docs.docker.com/network/iptables/).

All ports exposed by Docker containers are automatically whitelisted
in iptables and wired to the correct container.

This made installing firewalld and whitelisting ports pointless,
as far as this playbook's services are concerned.

People that wish to install firewalld (for other reasons), can do so
manually from now on.

This is inspired by and fixes #97 (Github Issue).
This commit is contained in:
Slavi Pantaleev
2019-04-03 11:34:49 +03:00
parent 0b034ac34b
commit af1c9ae59d
5 changed files with 0 additions and 53 deletions

View File

@ -23,7 +23,6 @@
- bash-completion
- docker-ce
- docker-python
- firewalld
- ntp
- fuse
state: latest
@ -67,13 +66,6 @@
update_cache: yes
when: ansible_os_family == 'Debian'
- name: Ensure firewalld is started and autoruns
service:
name: firewalld
state: started
enabled: yes
when: ansible_os_family == 'RedHat'
- name: Ensure Docker is started and autoruns
service:
name: docker