ansible-roles/minifirewall/tasks/main.yml
Jérémy Lecour ba90203f21
Some checks reported errors
continuous-integration/drone/push Build was killed
minifirewall: upstream release 22.03.1 and use includes directory
2022-03-15 23:07:33 +01:00

29 lines
764 B
YAML

---
- name: Compose minifirewall_restart_handler_name variable
set_fact:
minifirewall_restart_handler_name: "{{ minifirewall_restart_if_needed | bool | ternary('restart minifirewall', 'restart minifirewall (noop)') }}"
- name: Fail if minifirewall_main_file is defined
fail:
msg: "Variable minifirewall_main_file is deprecated and not configurable anymore."
when: minifirewall_main_file is defined
- include: install.yml
- include: config.yml
when: minifirewall_update_config | bool
- include: nrpe.yml
- include: activate.yml
- include: tail.yml
when: minifirewall_tail_included | bool
- name: Force restart minifirewall
command: /bin/true
notify: restart minifirewall
changed_when: False
when: minifirewall_restart_force | bool