Skip to content

Commit

Permalink
Merge branch 'master' into CFY-7568-handle-home-dir
Browse files Browse the repository at this point in the history
  • Loading branch information
isaac-s authored Feb 20, 2018
2 parents 606b764 + 5463a66 commit a6c3627
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions agent_packager/packager.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
DEFAULT_OUTPUT_TAR_PATH = '{0}-{1}-agent.tar.gz'
DEFAULT_VENV_PATH = 'cloudify/env'

PREINSTALL_MODULES = [
'setuptools==36.8.0'
]

EXTERNAL_MODULES = [
'celery==3.1.17'
]
Expand Down Expand Up @@ -265,6 +269,8 @@ def _install(modules, venv, final_set):
:param dict final_set: dict to populate with modules.
"""
installer = ModuleInstaller(modules, venv, final_set)
lgr.info('Installing modules required by setup...')
installer.install_modules(PREINSTALL_MODULES)
lgr.info('Installing module from requirements file...')
installer.install_requirements_file()
lgr.info('Installing external modules...')
Expand Down

0 comments on commit a6c3627

Please sign in to comment.