Added initial stub for where playbooks will go, moved to common

constants file so as to not repeat constants between CLI and lib.
This commit is contained in:
Michael DeHaan 2012-02-23 23:26:16 -05:00
commit 6eda2cf383
5 changed files with 136 additions and 44 deletions

10
lib/ansible/constants.py Normal file
View file

@ -0,0 +1,10 @@
DEFAULT_HOST_LIST = '/etc/ansible/hosts'
DEFAULT_MODULE_PATH = '/usr/share/ansible'
DEFAULT_MODULE_NAME = 'ping'
DEFAULT_PATTERN = '*'
DEFAULT_FORKS = 3
DEFAULT_MODULE_ARGS = ''
DEFAULT_TIMEOUT = 60
DEFAULT_REMOTE_USER = 'root'
DEFAULT_REMOTE_PASS = None