Skip to content
This repository has been archived by the owner on Nov 23, 2020. It is now read-only.

3.4.2 #22

Open
wants to merge 4 commits into
base: 3.4-build
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cloudify_marketplace/provision/bootstrap_simple
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function install_prereqs
{
echo installing prerequisites

sudo yum install -y git gcc python-devel
sudo yum install -y git gcc python-devel zip
curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | sudo python
sudo pip install virtualenv
}
Expand Down
1 change: 1 addition & 0 deletions cloudify_marketplace/provision/install_dependencies
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#! /usr/bin/env bash
set -e

yum -y install zip
# Install the appropriate dependencies into the mgmtworker env
if [[ -f /tmp/dependencies/${PACKER_BUILD_NAME}_dependencies.zip ]]; then
sudo /opt/mgmtworker/env/bin/pip install /tmp/dependencies/${PACKER_BUILD_NAME}_dependencies.zip
Expand Down