diff options
Diffstat (limited to 'ansible.cfg')
-rw-r--r-- | ansible.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible.cfg b/ansible.cfg index 82de41a..10b8f7f 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,33 +1,33 @@ # config file for ansible -- http://ansible.github.com # nearly all parameters can be overridden in ansible-playbook or with command line flags # ansible will read ~/.ansible.cfg or /etc/ansible/ansible.cfg, whichever it finds first [defaults] # location of inventory file, eliminates need to specify -i #hostfile = ./stage_vms # location of ansible library, eliminates need to specify --module-path -library = ./lib/:/usr/share/ansible/ +library = ./lib/modules:/usr/share/ansible # default module name used in /usr/bin/ansible when -m is not specified module_name = command # home directory where temp files are stored on remote systems. Should # almost always contain $HOME or be a directory writeable by all users remote_tmp = $HOME/.ansible/tmp # the default pattern for ansible-playbooks ("hosts:") pattern = * # the default number of forks (parallelism) to be used. Usually you # can crank this up. forks = 5 # the timeout used by various connection types. Usually this corresponds |