Allows to skip provisioning of the firewall
This commit is contained in:
parent
2f9c04c49f
commit
1cbbba0dea
3 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -12,6 +12,7 @@
|
|||
import_role:
|
||||
name: geerlingguy.firewall
|
||||
tags: firewall
|
||||
when: not skip_firewall
|
||||
|
||||
- include: locales-debian.yml
|
||||
become: true
|
||||
|
|
Loading…
Add table
Reference in a new issue