diff options
author | Thomas Omans <thomas.omans@gmail.com> | 2013-09-27 19:03:28 +0200 |
---|---|---|
committer | Michael DeHaan <michael.dehaan@gmail.com> | 2013-10-12 16:15:30 +0200 |
commit | 632232259aef6b492829122e1ef1071b858a70ea (patch) | |
tree | 26f26daf89c87da62de1c5f507ea09c76960d79d /examples | |
parent | Merge pull request #3827 from mscherer/disable_callbacks (diff) | |
download | ansible-632232259aef6b492829122e1ef1071b858a70ea.tar.xz ansible-632232259aef6b492829122e1ef1071b858a70ea.zip |
Adding config flag role_path for common/global roles
Using ANSIBLE_ROLE_PATH environment variable or role_path in ansible.cfg
can configure paths where roles will be searched for
extra paths will only be used as a backup once regular locations are exhausted
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ansible.cfg | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index 25b58dc1da..acb8e52e90 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -12,6 +12,7 @@ hostfile = /etc/ansible/hosts library = /usr/share/ansible +#roles_path = /etc/ansible/roles remote_tmp = $HOME/.ansible/tmp pattern = * forks = 5 |