From 8c02341cdb0c98b6376e192d35679f6306b9f520 Mon Sep 17 00:00:00 2001 From: mySYSMON <72756883+mySYSMON@users.noreply.github.com> Date: Sat, 16 Jan 2021 21:54:56 -0500 Subject: [PATCH 1/2] add pip upgrade and python3 --- Vagrant/bootstrap.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Vagrant/bootstrap.sh b/Vagrant/bootstrap.sh index 4ab442a..33e0eb0 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)]: Updateing 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() { From 409405886061aeedd2799b1d145def672f21d8d4 Mon Sep 17 00:00:00 2001 From: mySYSMON <72756883+mySYSMON@users.noreply.github.com> Date: Sat, 16 Jan 2021 21:59:02 -0500 Subject: [PATCH 2/2] add pip upgrade and python3 --- Vagrant/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrant/bootstrap.sh b/Vagrant/bootstrap.sh index 33e0eb0..68e03f1 100644 --- a/Vagrant/bootstrap.sh +++ b/Vagrant/bootstrap.sh @@ -22,7 +22,7 @@ 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)]: Updateing pip..." + 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