pandora_vagrant/install.sh

19 lines
587 B
Bash
Raw Normal View History

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
2017-03-16 22:08:08 +00:00
2015-05-02 10:11:05 +00:00
apt-get update -qq
apt-get install -y curl >/dev/null 2>&1
2017-03-16 22:08:08 +00:00
locale-gen en_US.UTF-8
export LANG=en_US.UTF-8
echo LANG=en_US.UTF-8 >> /etc/locale.conf
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"
2017-03-16 22:08:08 +00:00
export PANDORA=ubuntu
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