89d46b2ebc
The standard Ansible names for the plugins folders [1] are singular. This patch implements the renaming of all the places where ansible.cfg has the plural names to match the change in the plugins repo. [1] https://github.com/ansible/ansible/blob/devel/lib/ansible/constants.py Change-Id: Ibb80cdb99ff254df79da03b7d916509f6d4f8bad Depends-On: Ib965750f267d11287a6196e2544c3a014a3e2029
25 lines
502 B
INI
25 lines
502 B
INI
[defaults]
|
|
# Additional plugins
|
|
lookup_plugins = /etc/ansible/plugins/lookup
|
|
filter_plugins = /etc/ansible/plugins/filter
|
|
action_plugins = /etc/ansible/plugins/action
|
|
library = /etc/ansible/plugins/library
|
|
|
|
# Fact caching
|
|
gathering = smart
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = /etc/openstack_deploy/ansible_facts
|
|
fact_caching_timeout = 86400
|
|
|
|
inventory = inventory
|
|
host_key_checking = False
|
|
|
|
# Set color options
|
|
nocolor = 0
|
|
|
|
# SSH timeout
|
|
timeout = 120
|
|
|
|
[ssh_connection]
|
|
pipelining = True
|