Creates foundation for home lab environment - sets system baselines and creates required directories - adds `common` role for system baselines - adds `dns_server` role to set up dns for internal routing - adds `gitea_server` role to set up git and action runner
22 lines
567 B
INI
22 lines
567 B
INI
[defaults]
|
|
inventory = ./inventory.yaml
|
|
host_key_checking = False
|
|
vault_password_file = .vault-pass.txt
|
|
forks = 5
|
|
stdout_callback = yaml
|
|
callbacks_enabled = ansible.posix.profile_tasks
|
|
interpreter_python = auto_silent
|
|
retry_files_enabled = False
|
|
ansible_managed = Ansible managed: modified on %Y-%m-%d %H:%M:%S
|
|
gathering = smart
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = /tmp/ansible_fact_cache
|
|
fact_caching_timeout = 7200
|
|
|
|
[ssh_connection]
|
|
pipelining = True
|
|
ssh_args = -o ControlMaster=auto -o ControlPersist=60s
|
|
|
|
[privilege_escalation]
|
|
become_method = sudo
|