Skip to content
Snippets Groups Projects
Commit ed1464e1 authored by Nikolay Stanchev's avatar Nikolay Stanchev
Browse files

Fixed broken installation script

parent e7e33902
No related branches found
No related tags found
No related merge requests found
......@@ -21,8 +21,8 @@ sudo -u postgres createdb whoamidb
sudo -u postgres bash -c "psql -c \"GRANT ALL PRIVILEGES ON DATABASE \"whoamidb\" to clmc;\""
# install virtualenvwrapper to manage python environments - and check
echo "----> Installing Python3 and Pip3"
apt-get install -y python3 python3-pip wget curl
echo "----> Installing Python3, Pip3 and curl"
apt-get install -y python3 python3-pip curl
update-alternatives --install /usr/bin/python python /usr/bin/python3 10
echo "----> Installing virtualenv and wrapper"
......
......@@ -11,6 +11,10 @@ KAPACITOR_CHECKSUM=eea9b215f241906570eafe3857e1d4c5
CHRONOGRAF_VERSION=1.4.4.2
CHRONOGRAF_CHECKSUM=eea6915aa6db8f134fcd3b095e863b773bfb3a16a26e346dd65904a07df97963
apt-get update
echo "----> Installing wget"
apt-get install -y wget
# install influx
echo "----> Installing InfluxDB"
wget https://dl.influxdata.com/influxdb/releases/influxdb_${INFLUX_VERSION}_amd64.deb 2> /dev/null
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment