14 lines
486 B
Bash
Executable file
14 lines
486 B
Bash
Executable file
#!/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
|
|
curl -sL https://pan.do/ra-install > /srv/pandora_install.sh
|
|
chmod +x /srv/pandora_install.sh
|
|
echo "Installing pan.do/ra..."
|
|
echo "logging installation progress into pandora_install.log"
|
|
export PANDORA=vagrant
|
|
/srv/pandora_install.sh >/srv/pandora_install.log 2>&1
|
|
rm /srv/pandora_install.sh
|
|
fi
|