ansible-roles/evomaintenance/tasks/main.yml

21 lines
523 B
YAML

---
- set_fact:
minifirewall_restart_handler_name: "{{ minifirewall_restart_if_needed | ternary('restart minifirewall', 'restart minifirewall (noop)') }}"
- include: install_package_debian.yml
when:
- not evomaintenance_install_vendor
- ansible_distribution == "Debian"
- include: install_vendor_debian.yml
when:
- evomaintenance_install_vendor
- ansible_distribution == "Debian"
- include: install_vendor_openbsd.yml
when:
- ansible_distribution == "OpenBSD"
- include: minifirewall.yml