36 lines
784 B
INI
36 lines
784 B
INI
# Ansible Configuration File
|
|
# Generated for Nextcloud Stack Deployment
|
|
|
|
[defaults]
|
|
inventory = inventory/hosts.yml
|
|
roles_path = roles
|
|
host_key_checking = False
|
|
retry_files_enabled = False
|
|
gathering = smart
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = /tmp/ansible_facts
|
|
fact_caching_timeout = 3600
|
|
stdout_callback = yaml
|
|
callbacks_enabled = profile_tasks, timer
|
|
deprecation_warnings = False
|
|
|
|
# SSH settings
|
|
timeout = 30
|
|
forks = 5
|
|
|
|
# Privilege escalation
|
|
become = True
|
|
become_method = sudo
|
|
become_ask_pass = False
|
|
|
|
[privilege_escalation]
|
|
become = True
|
|
become_method = sudo
|
|
become_user = root
|
|
become_ask_pass = False
|
|
|
|
[ssh_connection]
|
|
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no
|
|
pipelining = True
|
|
control_path = /tmp/ansible-ssh-%%h-%%p-%%r
|