Spotter-VM/lxc-apps/opendatakit-build/install.sh

28 lines
891 B
Bash
Raw Normal View History

#!/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 21:52:38 +02:00
[ ! -e /run/openrc/started/postgres ] && service postgres start && STOP_POSTGRES=1
# Create databases
export OPENDATAKITBUILD_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 OpenDataKit Build
export OPENDATAKITBUILD_COOKIE_SECRET=$(head -c 8 /dev/urandom | hexdump -e '"%x"')
mkdir -p /srv/opendatakit-build/conf
2018-10-25 22:22:36 +02:00
envsubst <srv/opendatakit-build/conf/config.yml >/srv/opendatakit-build/conf/config.yml
2018-09-13 21:52:38 +02:00
lxc-execute opendatakit-build -- sh -c 'cd /srv/opendatakit-build; rake db:migrate'
# Install service
2018-10-25 22:22:36 +02:00
cp etc/init.d/opendatakit-build /etc/init.d/opendatakit-build
2018-09-13 21:52:38 +02:00
rc-update -u
# Stop services required for build
2018-09-13 21:52:38 +02:00
[ ! -z ${STOP_POSTGRES} ] && service postgres stop
2018-10-28 19:50:35 +01:00
# Register application
2019-02-26 21:12:41 +01:00
vmmgr register-app opendatakit-build odkbuild