Spotter-VM/gnuhealth.sh

39 lines
1.6 KiB
Bash
Raw Normal View History

2018-01-08 15:48:23 +01:00
#!/bin/sh
2017-12-02 00:29:49 +01:00
SOURCE_DIR=$(realpath $(dirname "${0}"))/gnuhealth
2017-12-02 00:29:49 +01:00
# Check prerequisites
2018-02-03 11:20:40 +01:00
docker image ls | grep -q postfix || $(realpath $(dirname "${0}"))/postfix.sh
docker image ls | grep -q postgres || $(realpath $(dirname "${0}"))/postgres.sh
2017-12-29 16:31:48 +01:00
# Build Docker container
docker build -t gnuhealth ${SOURCE_DIR}
2017-12-02 00:29:49 +01:00
# Create databases
2017-12-02 00:29:49 +01:00
export GNUHEALTH_PWD=$(head -c 18 /dev/urandom | base64 | tr -d '/+=')
2017-12-29 16:31:48 +01:00
envsubst <${SOURCE_DIR}/createdb.sql | docker exec -i postgres psql
2017-12-02 00:29:49 +01:00
# Configure GNU Health
2017-12-29 16:31:48 +01:00
mkdir -p /srv/gnuhealth/conf/
envsubst <${SOURCE_DIR}/srv/gnuhealth/conf/trytond.conf >/srv/gnuhealth/conf/trytond.conf
2017-12-02 00:29:49 +01:00
# Populate database
export GNUHEALTH_ADMIN_PWD=$(head -c 12 /dev/urandom | base64)
2017-12-29 16:31:48 +01:00
echo ${GNUHEALTH_ADMIN_PWD} >/tmp/.adminpwd
docker run --rm -h gnuhealth --link postgres -v /srv/gnuhealth/conf:/srv/gnuhealth/gnuhealth/tryton/server/config -v /tmp/.adminpwd:/tmp/.adminpwd -e TRYTONPASSFILE=/tmp/.adminpwd gnuhealth /srv/gnuhealth/gnuhealth/tryton/server/trytond-4.2.10/bin/trytond-admin -d gnuhealth --all -v
2017-12-29 16:31:48 +01:00
rm -f /tmp/.adminpwd
2017-12-02 00:29:49 +01:00
# Populate demo database
2018-03-25 23:11:44 +02:00
wget http://health.gnu.org/downloads/postgres_dumps/gnuhealth-32-demo.sql.gz -O /tmp/gnuhealth_demo.sql.gz
2017-12-29 16:31:48 +01:00
zcat /tmp/gnuhealth_demo.sql.gz | docker exec -i -e PGPASSWORD=${GNUHEALTH_PWD} postgres psql gnuhealth_demo gnuhealth
rm -f /tmp/gnuhealth_demo.sql.gz
2017-12-29 16:31:48 +01:00
# Create GNU Health service
cp ${SOURCE_DIR}/etc/init.d/gnuhealth /etc/init.d/gnuhealth
rc-update add gnuhealth
2017-12-29 16:31:48 +01:00
service gnuhealth start
# Add application definition
spotter-appmgr add-app gnuhealth "https://gnuhealth.{host}/index.html" admin "${GNUHEALTH_ADMIN_PWD}"
spotter-appmgr add-app gnuhealth-clients -p clienturl "gnuhealth.{host}"