pandora/vm/pandora_install.sh

251 lines
6.1 KiB
Bash
Raw Normal View History

#!/bin/bash
PANDORA=${PANDORA-pandora}
echo Installing pandora with user: $PANDORA
2015-05-04 08:55:13 +00:00
getent passwd $PANDORA > /dev/null 2>&1 || adduser --disabled-password --gecos "" $PANDORA
LXC=`grep -q lxc /proc/1/environ && echo 'yes' || echo 'no'`
if [ -e /etc/os-release ]; then
. /etc/os-release
else
ID=unknown
fi
UBUNTU_VERSION="$VERSION_ID"
2015-02-20 11:28:17 +00:00
if [ -d "/run/systemd/system/" ]; then
SYSTEMD="yes"
else
SYSTEMD="no"
fi
export DEBIAN_FRONTEND=noninteractive
2014-11-20 17:06:00 +00:00
echo "deb http://ppa.launchpad.net/j/pandora/ubuntu trusty main" > /etc/apt/sources.list.d/j-pandora.list
2015-03-14 19:34:54 +00:00
apt-key add - <<EOF
2014-11-18 13:43:51 +00:00
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1
mI0ESXYhEgEEALl9jDTdmgpApPbjN+7b85dC92HisPUp56ifEkKJOBj0X5HhRqxs
Wjx/zlP4/XJGrHnxJyrdPxjSwAXz7bNdeggkN4JWdusTkr5GOXvggQnng0X7f/rX
oJwoEGtYOCODLPs6PC0qjh5yPzJVeiRsKUOZ7YVNnwNwdfS4D8RZvtCrABEBAAG0
FExhdW5jaHBhZCBQUEEgZm9yIGpeiLYEEwECACAFAkl2IRICGwMGCwkIBwMCBBUC
CAMEFgIDAQIeAQIXgAAKCRAohRM8AZde82FfA/9OB/64/YLaCpizHZ8f6DK3rGgF
e6mX3rFK8yOKGGL06316VhDzfzMiZSauUZ0t+lKHR/KZYeSaFwEoUoblTG/s4IIo
9aBMHWhVXJW6eifKUmTGqEn2/0UxoWQq2C3F6njMkCaP+ALOD5uzaSYGdjqAUAwS
pAAGSEQ4uz6bYSeM4Q==
=SM2a
-----END PGP PUBLIC KEY BLOCK-----
EOF
2016-03-26 21:55:53 +00:00
echo 'Acquire::Languages "none";' > /etc/apt/apt.conf.d/99languages
2014-11-18 13:43:51 +00:00
2015-05-01 10:45:03 +00:00
apt-get update -qq
if [ "$LXC" == "no" ]; then
apt-get install -y \
acpid \
ntp
fi
apt-get install -y \
2015-05-15 11:42:32 +00:00
sudo \
openssh-server \
vim \
wget \
pwgen \
nginx \
rabbitmq-server \
git \
python-setuptools \
python-pip \
python-virtualenv \
python-imaging \
python-dev \
python-imaging \
python-numpy \
python-psycopg2 \
python-pyinotify \
python-simplejson \
python-lxml \
python-html5lib \
python-ox \
oxframe \
ffmpeg \
2014-02-13 18:48:47 +00:00
mkvtoolnix \
2014-03-08 11:18:36 +00:00
gpac \
imagemagick \
poppler-utils \
ipython \
2013-08-29 09:46:32 +00:00
postfix \
postgresql \
postgresql-contrib
2012-10-09 10:44:36 +00:00
sudo -u postgres createuser -S -D -R $PANDORA
sudo -u postgres createdb -T template0 --locale=C --encoding=UTF8 -O $PANDORA pandora
echo "CREATE EXTENSION pg_trgm;" | sudo -u postgres psql pandora
#rabbitmq
RABBITPWD=$(pwgen -n 16 -1)
rabbitmqctl add_user pandora $RABBITPWD
rabbitmqctl add_vhost /pandora
rabbitmqctl set_permissions -p /pandora pandora ".*" ".*" ".*"
#pandora
git clone https://git.0x2620.org/pandora.git /srv/pandora
cd /srv/pandora
./ctl init
2013-07-03 14:25:57 +00:00
HOST=$(hostname -s)
HOST_CONFIG="/srv/pandora/pandora/config.$HOST.jsonc"
SITE_CONFIG="/srv/pandora/pandora/config.jsonc"
test -e $HOST_CONFIG && cp $HOST_CONFIG $SITE_CONFIG
test -e $SITE_CONFIG || cp /srv/pandora/pandora/config.pandora.jsonc $SITE_CONFIG
2015-03-14 19:34:54 +00:00
cat > /srv/pandora/pandora/local_settings.py <<EOF
DATABASES = {
'default': {
'NAME': 'pandora',
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': '$PANDORA',
'PASSWORD': '',
}
}
2014-11-26 20:03:27 +00:00
BROKER_URL = 'amqp://pandora:$RABBITPWD@localhost:5672//pandora'
XACCELREDIRECT = True
DEBUG = False
TEMPLATE_DEBUG = DEBUG
JSON_DEBUG = False
DB_GIN_TRGM = True
EOF
MANAGE="sudo -H -u $PANDORA /srv/pandora/pandora/manage.py"
2015-03-20 09:28:03 +00:00
mkdir /srv/pandora/data
chown -R $PANDORA:$PANDORA /srv/pandora
2015-03-20 09:28:03 +00:00
2015-05-06 17:00:02 +00:00
echo "Initialize database..."
cd /srv/pandora/pandora
$MANAGE init_db
2015-03-20 08:39:35 +00:00
echo "UPDATE django_site SET domain = '$HOST.local', name = '$HOST.local' WHERE 1=1;" | $MANAGE dbshell
/srv/pandora/ctl install
if [ "$PANDORA" != "pandora" ]; then
sed -i \
-e "s/USER=pandora/USER=$PANDORA/g" \
-e "s/home\/pandora/home\/$PANDORA/g" \
/etc/init/pandora*.conf
fi
if [ "$LXC" == "yes" ]; then
if [ "$SYSTEMD" == "yes" ]; then
sed -i s/127.0.0.1/0.0.0.0/g /lib/systemd/system/pandora.service
else
sed -i s/127.0.0.1/0.0.0.0/g /etc/init/pandora.conf
fi
2015-04-29 12:58:11 +00:00
echo "WEBSOCKET_ADDRESS = \"0.0.0.0\"" >> /srv/pandora/pandora/local_settings.py
2014-09-30 12:43:22 +00:00
fi
2013-07-03 14:25:57 +00:00
/srv/pandora/ctl start
2013-02-09 10:42:21 +00:00
#logrotate
2013-07-03 14:25:57 +00:00
cp "/srv/pandora/etc/logrotate.d/pandora" "/etc/logrotate.d/pandora"
2013-02-09 10:42:21 +00:00
#nginx
cp "/srv/pandora/etc/nginx/pandora" "/etc/nginx/sites-available/default"
2013-09-15 17:19:09 +00:00
read -r -d '' GZIP <<EOI
gzip_static on;\\
\tgzip_http_version 1.1;\\
\tgzip_vary on;\\
\tgzip_comp_level 6;\\
\tgzip_proxied any;\\
\tgzip_types text/plain text/css application/json text/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript text/x-js;\\
\tgzip_buffers 16 8k;\\
\tgzip_disable "MSIE [1-6]\.(?!.*SV1)";
EOI
sed -i -e "s#gzip_disable \"msie6\";#${GZIP}#g" /etc/nginx/nginx.conf
service nginx restart
2013-08-26 10:39:39 +00:00
if [ "$LXC" == "yes" ]; then
2014-05-06 17:00:57 +00:00
test -e /etc/init/avahi-daemon.conf && sed -i "s/-D/--no-rlimits -D/g" /etc/init/avahi-daemon.conf
2013-08-26 10:39:39 +00:00
fi
if [ "$LXC" == "no" ]; then
2015-05-15 11:42:32 +00:00
if [ "$SYSTEMD" == "yes" ]; then
echo Servers=pool.ntp.org >> /etc/systemd/timesyncd.conf
else
2015-01-19 17:47:46 +00:00
cat > /etc/cron.d/ntp_fixtime <<EOF
# /etc/cron.d/ntp_fixtime: vms can go out of sync, run ntpdate to sync time
*/10 * * * * root /usr/sbin/ntpdate pool.ntp.org >/dev/null
EOF
2015-05-15 11:42:32 +00:00
fi
cat > /usr/local/bin/genissue <<EOF
2014-10-10 15:54:57 +00:00
#!/bin/sh
HOST=\$(ps ax | grep avahi-daemon | grep local | sed "s/.*\[\(.*\)\].*/\1/g" | sed 's/\.$//')
echo Welcome to pan.do/ra. Connect via one of these URLs:
echo
if [ -n "\$HOST" ]; then
echo " http://\$HOST/"
fi
for ip in \$(ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print \$1 }'); do
echo " http://\$ip/"
done
echo
EOF
chmod +x /usr/local/bin/genissue
2013-07-03 14:25:57 +00:00
/usr/local/bin/genissue > /etc/issue
2015-03-14 19:34:54 +00:00
cat > /etc/rc.local <<EOF
#!/bin/sh -e
2015-01-19 17:47:46 +00:00
#vm has one network interface and that might change, make sure its not persistent
rm -f /etc/udev/rules.d/70-persistent-net.rules
#update issue
/usr/local/bin/genissue > /etc/issue
EOF
chmod +x /etc/rc.local
2015-03-14 19:34:54 +00:00
fi
2015-01-19 17:47:46 +00:00
apt-get clean
2013-07-03 14:25:57 +00:00
cat > /home/$PANDORA/.vimrc <<EOF
2013-07-03 14:25:57 +00:00
set nocompatible
set encoding=utf-8
set showcmd
set autochdir
set tabstop=4 shiftwidth=4
set expandtab
set si
set sw=4
set sts=4
set backspace=indent,eol,start
set hlsearch
set incsearch
set ignorecase
set smartcase
set modeline
nmap <C-V> "+gP
imap <C-V> <ESC><C-V>i
vmap <C-C> "+y
filetype plugin indent on
syntax on
2014-10-20 15:55:14 +00:00
au BufNewFile,BufRead *.jsonc setf javascript
2013-07-03 14:25:57 +00:00
nmap <C-H> :tabprev<CR>
nmap <C-L> :tabnext<CR>
hi SpellBad ctermbg=0
nnoremap <F2> :set invpaste paste?<CR>
set pastetoggle=<F2>
set showmode
2015-09-20 16:50:02 +00:00
set lcs=tab:→·,trail:·,nbsp:˽
set list
2013-07-03 14:25:57 +00:00
EOF