- Add ansible_become_pass to all hosts (sudo uses same password as SSH) - Remove truenas-scale and vyos from children groups (no connection info) - Add ansible.cfg: host_key_checking=False, become=False as default - Add become: false to wait_for_connection to avoid sudo during SSH test Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
321 B
INI
8 lines
321 B
INI
[defaults]
|
|
# Do not prompt or fail on unknown host keys (Semaphore runner has no ~/.ssh/known_hosts)
|
|
host_key_checking = False
|
|
|
|
# Disable become by default — playbooks/tasks set become: true explicitly where needed.
|
|
# This overrides any system-wide become=True in /etc/ansible/ansible.cfg on the runner.
|
|
become = False
|