Two latent bugs that blocked the documented deploy path (never exercised end-to-end before applying dev_env to ubongo): - Makefile: the PLAYBOOK variable was both the ansible-playbook BINARY path and the user-supplied playbook NAME, so `make check/deploy PLAYBOOK=<name>` overrode the binary. Renamed the binary var to PLAYBOOK_BIN. - ansible.cfg: stdout_callback=yaml and callbacks_enabled=timer were community.general plugins (not installed; boma only ships ansible.posix). Use the built-in default callback with callback_result_format=yaml and ansible.posix.profile_tasks — same intent, no new heavy collection. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
14 lines
496 B
INI
14 lines
496 B
INI
[defaults]
|
|
inventory = inventories/production/hosts.yml
|
|
roles_path = roles
|
|
collections_path = .collections
|
|
vault_password_file = scripts/vault-pass-client.sh
|
|
interpreter_python = auto_silent
|
|
stdout_callback = default
|
|
callback_result_format = yaml
|
|
callbacks_enabled = ansible.posix.profile_tasks
|
|
|
|
# Avoid slow DNS lookups
|
|
[ssh_connection]
|
|
pipelining = True
|
|
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=accept-new
|