Update inventories/clients/sundance/group_vars/pfsense_nodes.yml
This commit is contained in:
@@ -21,10 +21,10 @@ ansible_shell_type: sh
|
||||
ansible_shell_executable: /bin/sh
|
||||
|
||||
# Set to your SSH key or use ansible_password
|
||||
ansible_ssh_private_key_file: "/root/.ssh/client_{{ CLIENT_SLUG }}"
|
||||
ansible_ssh_private_key_file: "~/.ssh/client_{{ CLIENT_SLUG }}"
|
||||
|
||||
# Default upgrade settings (can be overridden per host in host_vars/)
|
||||
perform_upgrade: false
|
||||
allow_major_upgrade: false
|
||||
auto_reboot: true
|
||||
pkg_repo_update: true
|
||||
perform_upgrade: "{{ perform_upgrade | default(false) }}"
|
||||
allow_major_upgrade: "{{ allow_major_upgrade | default(false) }}"
|
||||
auto_reboot: "{{ auto_reboot | default(true) }}"
|
||||
pkg_repo_update: "{{ pkg_repo_update | default(true) }}
|
||||
|
||||
Reference in New Issue
Block a user