Update inventories/clients/danchilla/group_vars/pfsense_nodes.yml

This commit is contained in:
2026-04-30 12:16:27 -07:00
parent d2b24030f6
commit 40afb2ac7a

View File

@@ -20,11 +20,12 @@ ansible_ssh_common_args: >-
ansible_shell_type: sh ansible_shell_type: sh
ansible_shell_executable: /bin/sh ansible_shell_executable: /bin/sh
# Set to your SSH key or use ansible_password # Set to your SSH key or use ansible_password
# ansible_ssh_private_key_file: ~/.ssh/pfsense_rsa ansible_ssh_private_key_file: "/root/.ssh/client_{{ CLIENT_SLUG }}"
# 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) }}"