43 lines
1.7 KiB
Bash
Executable File
43 lines
1.7 KiB
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
|
|
# Create Postgres instance
|
|
mkdir -p /srv/crisiscleanup/postgres_data
|
|
chown -R 105432:105432 /srv/crisiscleanup/postgres_data
|
|
chmod 700 /srv/crisiscleanup/postgres_data
|
|
lxc-execute -n crisiscleanup-postgres -- initdb -D /var/lib/postgresql
|
|
|
|
# Configure Postgres
|
|
cp postgres_data/postgresql.conf /srv/crisiscleanup/postgres_data/postgresql.conf
|
|
cp postgres_data/pg_hba.conf /srv/crisiscleanup/postgres_data/pg_hba.conf
|
|
|
|
# Create database
|
|
export CRISISCLEANUP_PWD=$(head -c 18 /dev/urandom | base64 | tr -d '+/=')
|
|
service lxc-crisiscleanup-postgres start
|
|
envsubst <createdb.sql | lxc-attach -u 5432 -g 5432 crisiscleanup-postgres -- psql
|
|
|
|
# Copy existing config files into persistent storage
|
|
lxchelper extract crisiscleanup /srv/crisiscleanup/config /srv/crisiscleanup/cc_conf
|
|
|
|
# Configure CrisisCleanup
|
|
export CRISISCLEANUP_ADMIN_USER="Admin"
|
|
export CRISISCLEANUP_ADMIN_EMAIL="admin@example.com"
|
|
export CRISISCLEANUP_ADMIN_PWD=$(head -c 12 /dev/urandom | base64 | tr -d '+/=')
|
|
envsubst <cc_conf/database.yml >/srv/crisiscleanup/cc_conf/database.yml
|
|
cp cc_conf/boot.rb /srv/crisiscleanup/cc_conf/boot.rb
|
|
cp cc_conf/initializers/devise.rb /srv/crisiscleanup/cc_conf/initializers/devise.rb
|
|
cp cc_conf/environments/production.rb /srv/crisiscleanup/cc_conf/environments/production.rb
|
|
|
|
# Populate database
|
|
lxc-execute crisiscleanup -- rake db:schema:load
|
|
envsubst <adminpwd.rb | lxc-execute crisiscleanup -- sh -c 'cd /srv/crisiscleanup; bin/rails console -e production'
|
|
|
|
# Install config update script
|
|
cp update-conf.sh /srv/crisiscleanup/update-conf.sh
|
|
|
|
# Stop services required for setup
|
|
service lxc-crisiscleanup-postgres stop
|
|
|
|
# Register application
|
|
vmmgr register-app crisiscleanup cc "${CRISISCLEANUP_ADMIN_EMAIL}" "${CRISISCLEANUP_ADMIN_PWD}"
|