minifirewall: add a variable to force a restart of the firewall

This commit is contained in:
Jérémy Lecour 2018-08-30 17:05:30 +02:00 committed by Jérémy Lecour
parent 96cd04ae40
commit 9787328a0b
4 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,7 @@ The **patch** part changes incrementally at each release.
### Added
* minifirewall: add a variable to disable the restart handler
* minifirewall: add a variable to force a restart of the firewall (even with no change)
### Changed

View File

@ -17,6 +17,7 @@ Everything is in the `tasks/main.yml` file.
* `minifirewall_privilegied_ips`: with IP/hosts should be trusted for restricted access (default: none)
* `minifirewall_tail_included` : source a "tail" file at the end of the main config file. (default: `False`)
* `minifirewall_restart_if_needed` : should the restart handler be executed (default: `True`)
* `minifirewall_restart_force` : force restart minifirewall at the end of the role execution (default: `False`)
The full list of variables (with default values) can be found in `defaults/main.yml`.
**Some IP/hosts must be configured or the server will be inaccessible via network.**

View File

@ -25,6 +25,7 @@ minifirewall_private_ports_udp: []
minifirewall_autostart: "no"
minifirewall_restart_if_needed: True
minifirewall_restart_force: False
evomaintenance_hosts: []

View File

@ -13,3 +13,8 @@
- include: tail.yml
when: minifirewall_tail_included
- name: Force restart minifirewall
command: /bin/true
notify: restart minifirewall
when: minifirewall_restart_force