Commit 50bd14fa by Skylar Saveland

use DEFAULT_MODULE_PATH in setup.py so that there is a chance to override with…

use DEFAULT_MODULE_PATH in setup.py so that there is a chance to override with ANSIBLE_LIBRARY env variable
parent 8dc31f30
......@@ -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'
......
......@@ -9,11 +9,11 @@ from ansible import __version__, __author__
from distutils.core import setup
# find library modules
from ansible.constants import DIST_MODULE_PATH
from ansible.constants import DEFAULT_MODULE_PATH
dirs=os.listdir("./library/")
data_files = []
for i in dirs:
data_files.append((DIST_MODULE_PATH + i, glob('./library/' + i + '/*')))
data_files.append((DEFAULT_MODULE_PATH + i, glob('./library/' + i + '/*')))
setup(name='ansible',
version=__version__,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment