community.general.awall – Manage awall policies¶
Note
This plugin is part of the community.general collection (version 2.5.1).
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.awall
.
Synopsis¶
This modules allows for enable/disable/activate of awall policies.
Alpine Wall (awall) generates a firewall configuration from the enabled policy files and activates the configuration on the system.
Parameters¶
Examples¶
- name: Enable "foo" and "bar" policy
community.general.awall:
name: [ foo bar ]
state: enabled
- name: Disable "foo" and "bar" policy and activate new rules
community.general.awall:
name:
- foo
- bar
state: disabled
activate: no
- name: Activate currently enabled firewall rules
community.general.awall:
activate: yes
Authors¶
Ted Trask (@tdtrask) <ttrask01@yahoo.com>