2018-02-06 19:05:38 +01:00
|
|
|
#!/bin/sh
|
2018-10-28 16:04:11 +01:00
|
|
|
set -ev
|
2017-09-16 18:55:19 +02:00
|
|
|
|
2018-10-26 15:02:11 +02:00
|
|
|
cd $(realpath $(dirname "${0}"))/install
|
2017-09-16 18:55:19 +02:00
|
|
|
|
2019-10-05 16:10:29 +02:00
|
|
|
# Create Postgres instance
|
|
|
|
mkdir -p /srv/sambro/postgres_data
|
|
|
|
chown -R 105432:105432 /srv/sambro/postgres_data
|
|
|
|
chmod 700 /srv/sambro/postgres_data
|
|
|
|
lxc-execute -n sambro-postgres -- initdb -D /var/lib/postgresql
|
|
|
|
|
|
|
|
# Configure Postgres
|
|
|
|
cp postgres_data/postgresql.conf /srv/sambro/postgres_data/postgresql.conf
|
|
|
|
cp postgres_data/pg_hba.conf /srv/sambro/postgres_data/pg_hba.conf
|
2017-09-21 21:12:29 +02:00
|
|
|
|
2017-09-16 18:55:19 +02:00
|
|
|
# Create PostgreSQL user and database
|
2019-06-05 18:55:15 +02:00
|
|
|
export SAMBRO_PWD=$(head -c 18 /dev/urandom | base64 | tr -d '+/=')
|
2019-10-05 16:10:29 +02:00
|
|
|
service sambro-postgres start
|
|
|
|
envsubst <createdb.sql | lxc-attach -u 5432 -g 5432 sambro-postgres -- psql
|
2017-09-16 18:55:19 +02:00
|
|
|
|
2018-01-28 09:13:30 +01:00
|
|
|
# Prepare persistent directory structure
|
2019-10-05 16:10:29 +02:00
|
|
|
mkdir -p /srv/sambro/sahana_conf /srv/sambro/sahana_data/databases /srv/sambro/sahana_data/uploads /srv/sambro/sahana_data/SAMBRO
|
|
|
|
chown -R 108001:108001 /srv/sambro/sahana_conf /srv/sambro/sahana_data
|
|
|
|
lxc-execute sambro -- tar -cC /srv/web2py/applications/eden/models . | tar -xC /srv/sambro/sahana_conf
|
|
|
|
lxc-execute sambro -- tar -cC /srv/web2py/applications/eden/modules/templates/SAMBRO . | tar -xC /srv/sambro/sahana_data/SAMBRO
|
2017-09-16 18:55:19 +02:00
|
|
|
|
2018-01-28 09:13:30 +01:00
|
|
|
# Configure SAMBRO
|
2019-06-05 18:55:15 +02:00
|
|
|
export SAMBRO_HMAC=$(head -c 18 /dev/urandom | base64 | tr -d '+/=')
|
2017-09-16 18:55:19 +02:00
|
|
|
export SAMBRO_ADMIN_USER=admin@example.com
|
2019-06-05 18:55:15 +02:00
|
|
|
export SAMBRO_ADMIN_PWD=$(head -c 12 /dev/urandom | base64 | tr -d '+/=')
|
2019-10-05 16:10:29 +02:00
|
|
|
envsubst <sahana_conf/000_config.py >/srv/sambro/sahana_conf/000_config.py
|
|
|
|
# TODO:
|
|
|
|
#mkdir -p /var/lib/lxc/sambro/sambro/srv/web2py/applications/eden/modules/templates/default/users
|
|
|
|
#envsubst <masterUsers.csv >/var/lib/lxc/sambro/sambro/srv/web2py/applications/eden/modules/templates/default/users/masterUsers.csv
|
|
|
|
#chown -R 8001:8001 /var/lib/lxc/sambro/sambro/srv/web2py
|
|
|
|
cp sahana_conf/00_settings.py /srv/sambro/sahana_conf/00_settings.py
|
|
|
|
cp sahana_data/SAMBRO/config.py /srv/sambro/sahana_data/SAMBRO/config.py
|
|
|
|
chown -R 108001:108001 /srv/sambro/sahana_conf /srv/sambro/sahana_data
|
2017-09-16 18:55:19 +02:00
|
|
|
|
|
|
|
# Populate database
|
2018-10-28 13:29:01 +01:00
|
|
|
lxc-execute -u 8001 -g 8001 sambro -- sh -c 'cd /srv/web2py; ./web2py.py -S eden -M -R applications/eden/static/scripts/tools/noop.py'
|
2017-09-16 18:55:19 +02:00
|
|
|
|
2017-09-26 12:52:05 +02:00
|
|
|
# Set "production values" (increases performance) only if the DEBUG environment variable is not set
|
|
|
|
if [ ${DEBUG:-0} -eq 0 ]; then
|
2018-01-28 09:13:30 +01:00
|
|
|
sed -i 's/settings.base.migrate = True/settings.base.migrate = False/' /srv/sambro/conf/000_config.py
|
|
|
|
sed -i 's/settings.base.debug = True/settings.base.debug = False/' /srv/sambro/conf/000_config.py
|
|
|
|
sed -i 's/#settings.base.prepopulate = 0/settings.base.prepopulate = 0/' /srv/sambro/conf/000_config.py
|
2017-09-16 18:55:19 +02:00
|
|
|
fi
|
2018-07-15 21:55:35 +02:00
|
|
|
|
2018-09-20 15:45:00 +02:00
|
|
|
# Install config update script
|
2019-10-05 16:10:29 +02:00
|
|
|
cp update-conf.sh /srv/sambro/update-conf.sh
|
2018-09-20 15:45:00 +02:00
|
|
|
|
2019-10-05 16:10:29 +02:00
|
|
|
# Stop services required for setup
|
|
|
|
service sambro-postgres stop
|
2018-10-28 19:50:35 +01:00
|
|
|
|
2018-11-03 15:53:51 +01:00
|
|
|
# Register application
|
2019-02-26 21:12:41 +01:00
|
|
|
vmmgr register-app sambro sambro "${SAMBRO_ADMIN_USER}" "${SAMBRO_ADMIN_PWD}"
|