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
|
enable_sudo: yes
|
||||||
# Allow passwordless sudo (applied to group wheel)
|
# Allow passwordless sudo (applied to group wheel)
|
||||||
enable_passwordless_sudo: yes
|
enable_passwordless_sudo: yes
|
||||||
|
# Skip provisioning of the firewall
|
||||||
|
skip_firewall: no
|
||||||
```
|
```
|
||||||
|
|
||||||
Dependencies
|
Dependencies
|
||||||
|
|
|
@ -17,4 +17,6 @@ ensure_ansible_version: 2.10.3
|
||||||
# Allow sudo with a password (applied to group sudo)
|
# Allow sudo with a password (applied to group sudo)
|
||||||
enable_sudo: yes
|
enable_sudo: yes
|
||||||
# Allow passwordless sudo (applied to group wheel)
|
# Allow passwordless sudo (applied to group wheel)
|
||||||
enable_passwordless_sudo: yes
|
enable_passwordless_sudo: yes
|
||||||
|
# Skip provisioning of the firewall
|
||||||
|
skip_firewall: no
|
|
@ -12,6 +12,7 @@
|
||||||
import_role:
|
import_role:
|
||||||
name: geerlingguy.firewall
|
name: geerlingguy.firewall
|
||||||
tags: firewall
|
tags: firewall
|
||||||
|
when: not skip_firewall
|
||||||
|
|
||||||
- include: locales-debian.yml
|
- include: locales-debian.yml
|
||||||
become: true
|
become: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue