-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathansible.cfg
More file actions
30 lines (24 loc) · 832 Bytes
/
ansible.cfg
File metadata and controls
30 lines (24 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[defaults]
inventory=inventory
# Much cleaner output than the default callback
stdout_callback=yaml
# Required for stdout_callback to work when using local callbacks
bin_ansible_callbacks=true
# Enabled callbacks
callbacks_enabled=profile_tasks
# The first dir is used for Ansible Galaxy and other remote roles, which are
# installed with 'ansible-galaxy install -r requirements.yml'. This directory
# is ignored by git.
# The second path is used for local roles, whch are version controlled by git.
roles_path=roles/remote:roles/local
retry_files_enabled=false
ansible_managed="This file is automatically managed by Ansible"
deprecation_warnings=false
nocows=1
[privilege_escalation]
become_method=sudo
become_ask_pass=true
# Super handy when a run feels slow
[callback_profile_tasks]
# Per-task timing
task_output_limit=30