2015-05-02 10:11:05 +00:00
|
|
|
#!/bin/bash
|
|
|
|
if [ -x /srv/pandora ]; then
|
|
|
|
sudo -H -u vagrant /srv/pandora/update.py dev
|
|
|
|
else
|
|
|
|
apt-get update -qq
|
|
|
|
apt-get install -y curl >/dev/null 2>&1
|
2015-11-15 16:56:12 +00:00
|
|
|
curl -sL https://pan.do/ra-install > /srv/pandora_install.sh
|
|
|
|
chmod +x /srv/pandora_install.sh
|
2015-05-02 10:11:05 +00:00
|
|
|
echo "Installing pan.do/ra..."
|
|
|
|
echo "logging installation progress into pandora_install.log"
|
2015-05-02 14:38:14 +00:00
|
|
|
export PANDORA=vagrant
|
2015-11-15 16:56:12 +00:00
|
|
|
/srv/pandora_install.sh >/srv/pandora_install.log 2>&1
|
|
|
|
rm /srv/pandora_install.sh
|
2015-05-02 10:11:05 +00:00
|
|
|
fi
|