-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansible.cfg
31 lines (22 loc) · 1012 Bytes
/
ansible.cfg
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
31
# config file for ansible -- http://ansible.com/
# ==============================================
# nearly all parameters can be overridden in ansible-playbook
# or with command line flags. ansible will read ANSIBLE_CONFIG,
# ansible.cfg in the current working directory, .ansible.cfg in
# the home directory or /etc/ansible/ansible.cfg, whichever it
# finds first
[defaults]
# some basic default values...
inventory=hosts
# format of string {{ ansible_managed }} available within Jinja2
# templates indicates to users editing templates files will be replaced.
# replacing {file}, {host} and {uid} and strftime codes with proper values.
ansible_managed=Ansible managed: modified on %Y-%m-%d %H:%M:%S by {uid}
# don't like cows? that's unfortunate.
# set to 1 if you don't want cowsay support or export ANSIBLE_NOCOWS=1
nocows=1
# Use open_the_vault.sh to decrypt the vault file
# the script needs to be executable
vault_password_file=./bin/open_the_vault.sh
retry_files_save_path=/tmp
roles_path=roles