Allows to skip provisioning of the firewall

This commit is contained in:
Jan Beilicke 2022-04-04 21:31:45 +02:00
parent 2f9c04c49f
commit 1cbbba0dea
3 changed files with 6 additions and 1 deletions

View file

@ -30,6 +30,8 @@ ensure_ansible_version: 2.10.3
enable_sudo: yes
# Allow passwordless sudo (applied to group wheel)
enable_passwordless_sudo: yes
# Skip provisioning of the firewall
skip_firewall: no
```
Dependencies

View file

@ -18,3 +18,5 @@ ensure_ansible_version: 2.10.3
enable_sudo: yes
# Allow passwordless sudo (applied to group wheel)
enable_passwordless_sudo: yes
# Skip provisioning of the firewall
skip_firewall: no

View file

@ -12,6 +12,7 @@
import_role:
name: geerlingguy.firewall
tags: firewall
when: not skip_firewall
- include: locales-debian.yml
become: true