use DEFAULT_MODULE_PATH in setup.py so that there is a chance to override with ANSIBLE_LIBRARY env variable

This commit is contained in:
Skylar Saveland 2013-09-16 19:08:22 -07:00
commit 50bd14faa9
2 changed files with 2 additions and 4 deletions

View file

@ -86,8 +86,6 @@ if getattr(sys, "real_prefix", None):
DIST_MODULE_PATH = os.path.join(sys.prefix, 'share/ansible/')
else:
DIST_MODULE_PATH = '/usr/share/ansible/'
# custom ansible location without a virtualenv
DIST_MODULE_PATH = os.environ.get("ANSIBLE_DIST_MODULE_PATH", DIST_MODULE_PATH)
# sections in config file
DEFAULTS='defaults'