forked from cu-library/hyrax-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansible.cfg
25 lines (22 loc) · 855 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
[defaults]
# Modern servers come and go too often for host key checking to be useful
host_key_checking = False
# Why is the default not smart?
gathering = smart
# For the rare cases where galaxy is useful
roles_path = ./build/galaxy
# Default location for vault file. Please use ansible-vault-tools to encrypt
# https://github.com/building5/ansible-vault-tools
vault_password_file = $HOME/.ansible/hyrax-ansible-vault
# Default to the vagrant environment
inventory = ./inventory/vagrant.ini
# We don't want errors to skip handlers that have been triggered.
# That would cause bugs, since the handlers would be skipped if play was
# re-run.
force_handlers = True
[privilege_escalation]
# Nearly everything requires sudo, so default on
become = True
[ssh_connection]
# Speeds things up, but requires disabling requiretty in /etc/sudoers
pipelining = True