diff --git a/Vagrant/bootstrap.sh b/Vagrant/bootstrap.sh index 4ab442a..68e03f1 100644 --- a/Vagrant/bootstrap.sh +++ b/Vagrant/bootstrap.sh @@ -22,6 +22,8 @@ apt_install_prerequisites() { apt-get -qq install -y apt-fast echo "[$(date +%H:%M:%S)]: Running apt-fast install..." apt-fast -qq install -y crudini python python-pip python-dev libffi-dev libssl-dev python-virtualenv python-setuptools libjpeg-dev zlib1g-dev swig mongodb postgresql libpq-dev tcpdump apparmor-utils libcap2-bin libguac-client-rdp0 libguac-client-vnc0 libguac-client-ssh0 guacd samba-common-bin + echo "[$(date +%H:%M:%S)]: Updating pip..." + pip install --upgrade pip echo "[$(date +%H:%M:%S)]: Installing and configuring inetsim..." echo "deb http://www.inetsim.org/debian/ binary/" > /etc/apt/sources.list.d/inetsim.list wget -O - http://www.inetsim.org/inetsim-archive-signing-key.asc | apt-key add - @@ -33,6 +35,8 @@ apt_install_prerequisites() { service inetsim restart echo "[$(date +%H:%M:%S)]: Installing Supervisor..." pip install -U supervisor + echo "[$(date +%H:%M:%S)]: Installing python3..." + apt-get -qq install -y python3 } configure_prerequisites() {