#!/bin/bash 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" if [ "$ID" == "debian" ]; then SYSTEMD="yes" else SYSTEMD="no" fi export DEBIAN_FRONTEND=noninteractive echo "deb http://ppa.launchpad.net/j/pandora/ubuntu trusty main" > /etc/apt/sources.list.d/j-pandora.list apt-key add - << EOF -----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 apt-get update if [ "$LXC" == "no" ]; then apt-get install -y \ acpid \ ntp fi apt-get install -y \ openssh-server \ vim \ wget \ pwgen \ nginx \ rabbitmq-server \ bzr \ git \ subversion \ mercurial \ 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 \ mkvtoolnix \ gpac \ imagemagick \ poppler-utils \ ipython \ postfix \ postgresql \ postgresql-contrib 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 bzr branch http://code.0x2620.org/pandora /srv/pandora bzr branch http://code.0x2620.org/oxjs /srv/pandora/static/oxjs virtualenv --system-site-packages /srv/pandora cd /srv/pandora ./bin/pip install -r /srv/pandora/requirements.txt 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 cat > /srv/pandora/pandora/local_settings.py << EOF DATABASES = { 'default': { 'NAME': 'pandora', 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'USER': 'pandora', 'PASSWORD': '', } } 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 python manage.py" cd /srv/pandora/pandora $MANAGE init_db echo "UPDATE django_site SET domain = '$HOST.local', name = '$HOST.local' WHERE 1=1;" | $MANAGE dbshell mkdir /srv/pandora/data chown -R pandora:pandora /srv/pandora /srv/pandora/ctl install 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 fi /srv/pandora/ctl start #logrotate cp "/srv/pandora/etc/logrotate.d/pandora" "/etc/logrotate.d/pandora" #nginx cp "/srv/pandora/etc/nginx/pandora" "/etc/nginx/sites-available/default" read -r -d '' GZIP < /usr/local/bin/fixtime </dev/null sleep 600 done EOF chmod +x /usr/local/bin/fixtime fi cat > /usr/local/bin/genissue < /etc/issue cat > /etc/rc.local << EOF #!/bin/sh -e #vm has one network interface and that might change, make it not persistent rm -f /etc/udev/rules.d/70-persistent-net.rules #update issue /usr/local/bin/genissue > /etc/issue EOF if [ "$LXC" == "no" ]; then cat >> /etc/rc.local << EOF #vm can be suspended, this help to keep the time in sync /usr/local/bin/fixtime & EOF fi chmod +x /etc/rc.local cat > /home/pandora/.vimrc < "+gP imap i vmap "+y filetype plugin indent on syntax on au BufNewFile,BufRead *.jsonc setf javascript nmap :tabprev nmap :tabnext hi SpellBad ctermbg=0 nnoremap :set invpaste paste? set pastetoggle= set showmode EOF apt-get clean