Updated pfsense defaults

This commit is contained in:
2026-04-29 09:34:20 -07:00
parent 9b3fb700a4
commit 701a774a69

View File

@@ -1,6 +1,6 @@
--- ---
# inventory/group_vars/pfsense_nodes.yml # inventory/group_vars/pfsense_nodes.yml
# Applied to all hosts in the [pfsense] group. # Applied to all hosts in the [pfsense_nodes] group.
# pfSense runs FreeBSD — Python may not be installed. # pfSense runs FreeBSD — Python may not be installed.
# Using 'raw' module throughout the role avoids this entirely, # Using 'raw' module throughout the role avoids this entirely,
@@ -24,7 +24,7 @@ ansible_shell_executable: /bin/sh
# ansible_ssh_private_key_file: ~/.ssh/pfsense_rsa # ansible_ssh_private_key_file: ~/.ssh/pfsense_rsa
# Default upgrade settings (can be overridden per host in host_vars/) # Default upgrade settings (can be overridden per host in host_vars/)
perform_upgrade: false perform_upgrade: "{{ perform_upgrade | default(false) }}"
allow_major_upgrade: false allow_major_upgrade: "{{ allow_major_upgrade | default(false) }}"
auto_reboot: true auto_reboot: "{{ auto_reboot | default(true) }}"
pkg_repo_update: true pkg_repo_update: "{{ pkg_repo_update | default(true) }}