Spotter-VM/pandora/install.sh

64 lines
2.6 KiB
Bash
Raw Normal View History

2018-01-18 13:39:39 +01:00
#!/bin/sh
2018-10-28 16:04:11 +01:00
set -ev
2018-10-26 15:02:11 +02:00
cd $(realpath $(dirname "${0}"))/install
# Check prerequisites
2018-09-13 22:02:25 +02:00
[ ! -e /run/openrc/started/postgres ] && service postgres start && STOP_POSTGRES=1
[ ! -e /run/openrc/started/rabbitmq ] && service rabbitmq start && STOP_RABBITMQ=1
# Create PostgreSQL user and database
export PANDORA_PWD=$(head -c 18 /dev/urandom | base64)
2018-10-25 22:22:36 +02:00
envsubst <createdb.sql | lxc-attach -u 5432 -g 5432 postgres -- psql
# Configure RabbitMQ
export PANDORA_RABBIT_PWD=$(head -c 18 /dev/urandom | base64 | tr -d "/")
2018-09-13 22:02:25 +02:00
lxc-attach rabbitmq -- rabbitmqctl add_user pandora ${PANDORA_RABBIT_PWD}
lxc-attach rabbitmq -- rabbitmqctl add_vhost /pandora
lxc-attach rabbitmq -- rabbitmqctl set_permissions -p /pandora pandora ".*" ".*" ".*"
# Configure Pandora
2018-01-18 13:39:39 +01:00
mkdir -p /srv/pandora/conf /srv/pandora/data
2018-01-27 22:35:55 +01:00
chown 8002:8002 /srv/pandora/data
# Copy customized configuration if VANILLA environment variable is not set, else use the default pandora config
if [ ${VANILLA:-0} -eq 0 ]; then
2018-10-25 22:22:36 +02:00
cp srv/pandora/conf/config.jsonc /srv/pandora/conf
else
chown 8002:8002 /srv/pandora/conf
2018-09-13 22:02:25 +02:00
cp /var/lib/lxc/pandora/pandora/srv/pandora/pandora/config.pandora.jsonc /srv/pandora/conf
fi
2018-10-25 22:22:36 +02:00
cp srv/pandora/conf/gunicorn_config.py /srv/pandora/conf/gunicorn_config.py
envsubst <srv/pandora/conf/local_settings.py >/srv/pandora/conf/local_settings.py
2017-11-29 21:27:11 +01:00
# Set "production values" (increases performance) only if the DEBUG environment variable is not set
if [ ${DEBUG:-0} -eq 0 ]; then
2018-01-18 13:39:39 +01:00
sed -i 's/DEBUG = True/DEBUG = False/' /srv/pandora/conf/local_settings.py
2017-11-29 21:27:11 +01:00
fi
# Populate database
2018-09-13 22:02:25 +02:00
lxc-execute pandora -- /srv/pandora/pandora/manage.py migrate --noinput
lxc-execute pandora -- /srv/pandora/pandora/manage.py sqlfindindex
lxc-execute pandora -- /srv/pandora/pandora/manage.py sync_itemsort
lxc-execute pandora -- /srv/pandora/pandora/manage.py sync_documentsort
# Create admin account
export PANDORA_ADMIN_USER=admin
export PANDORA_ADMIN_EMAIL=admin@example.com
export PANDORA_ADMIN_PWD=$(head -c 12 /dev/urandom | base64)
2018-09-19 17:04:42 +02:00
export PANDORA_ADMIN_HASH=$(lxc-execute pandora -- sh -c "DJANGO_SETTINGS_MODULE=srv.pandora.pandora.settings python3 -c \"from django.contrib.auth.hashers import make_password; print(make_password('${PANDORA_ADMIN_PWD}'))\"")
2018-10-25 22:22:36 +02:00
envsubst <adminpwd.sql | lxc-attach -u 5432 -g 5432 postgres -- psql pandora
2018-09-04 21:42:26 +02:00
vmmgr update-login pandora "${PANDORA_ADMIN_USER}" "${PANDORA_ADMIN_PWD}"
2018-09-13 22:02:25 +02:00
# Install service
2018-10-25 22:22:36 +02:00
cp etc/init.d/pandora /etc/init.d/pandora
2018-09-13 22:02:25 +02:00
rc-update -u
# Install config update script
2018-10-25 22:22:36 +02:00
cp srv/pandora/update-conf.sh /srv/pandora/update-conf.sh
# Stop services required for build
2018-09-13 22:02:25 +02:00
[ ! -z ${STOP_POSTGRES} ] && service postgres stop
[ ! -z ${STOP_RABBITMQ} ] && service rabbitmq stop
2018-10-28 19:50:35 +01:00
exit 0