Merge pull request #4758 from alanfairless/group-host-var-dirs

Support organizing group and host variables across multiple files in a directory
This commit is contained in:
jctanner 2013-11-14 11:57:11 -08:00
commit 0f0a89b34e
2 changed files with 119 additions and 36 deletions

View file

@ -90,6 +90,10 @@ if getattr(sys, "real_prefix", None):
else:
DIST_MODULE_PATH = '/usr/share/ansible/'
# check all of these extensions when looking for yaml files for things like
# group variables
YAML_FILENAME_EXTENSIONS = [ "", ".yml", ".yaml" ]
# sections in config file
DEFAULTS='defaults'