22 lines
620 B
YAML
22 lines
620 B
YAML
---
|
|
# defaults file for firewall
|
|
|
|
# A list of service to allow traffic to.
|
|
firewall_services:
|
|
- name: ssh
|
|
|
|
# A bit more difficult example:
|
|
# firewall_services:
|
|
# - name: ssh
|
|
# - name: https
|
|
# - name: 5353
|
|
# proto: udp
|
|
|
|
# To update all packages installed by this roles, set `firewall_package_state` to `latest`.
|
|
firewall_package_state: present
|
|
|
|
# Some Docker containers do not allow managing services, rebooting and writing
|
|
# to some locations in /etc. The role skips tasks that will typically fail in
|
|
# Docker. With this parameter you can tell the role to -not- skip these tasks.
|
|
firewall_ignore_docker: yes
|