Spotter-VM/mifosx/install.sh

53 lines
1.7 KiB
Bash
Raw Normal View History

2018-01-19 20:32:16 +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 21:10:32 +02:00
[ ! -e /run/openrc/started/mariadb ] && service mariadb start && STOP_MARIADB=1
# Create databases
export MIFOSX_PWD=$(head -c 18 /dev/urandom | base64)
2018-10-25 22:22:36 +02:00
envsubst <createdb.sql | lxc-attach mariadb -- mysql
# Populate database
2018-09-13 21:10:32 +02:00
cat /var/lib/lxc/mifosx/mifosx/tmp/mifospltaform-tenants-first-time-install.sql | lxc-attach mariadb -- mysql mifosplatform-tenants
2018-10-25 22:22:36 +02:00
envsubst <schemapwd.sql | lxc-attach mariadb -- mysql mifosplatform-tenants
2018-01-19 20:32:16 +01:00
# Configure Mifos X
2018-01-27 14:25:41 +01:00
mkdir -p /srv/mifosx/conf
2018-10-25 22:22:36 +02:00
envsubst <srv/mifosx/conf/context.xml >/srv/mifosx/conf/context.xml
cp srv/mifosx/conf/server.xml /srv/mifosx/conf/server.xml
2018-01-19 20:32:16 +01:00
2018-09-13 21:10:32 +02:00
# Install service
2018-10-25 22:22:36 +02:00
cp etc/init.d/mifosx /etc/init.d/mifosx
2018-09-13 21:10:32 +02:00
rc-update -u
# Populate database
>/var/log/lxc/mifosx.log
2018-01-19 20:32:16 +01:00
service mifosx start
until grep -q 'org.apache.catalina.startup.Catalina.start Server startup' /var/log/lxc/mifosx.log; do
2018-01-19 20:32:16 +01:00
sleep 1
done
service mifosx stop
# Fix missing previous_run_status column
#echo 'ALTER TABLE `scheduled_email_campaign` ADD `previous_run_status` VARCHAR(10) NULL;' | lxc-attach mariadb -- mysql mifostenant-default
# Update admin account
export MIFOSX_ADMIN_USER=admin
export MIFOSX_ADMIN_EMAIL=admin@example.com
export MIFOSX_ADMIN_PWD=$(head -c 12 /dev/urandom | base64 | tr -d "+")
export MIFOSX_ADMIN_HASH=$(echo -n "${MIFOSX_ADMIN_PWD}{1}" | sha256sum | awk '{print $1}')
2018-10-25 22:22:36 +02:00
envsubst <adminpwd.sql | lxc-attach mariadb -- mysql mifostenant-default
# Install config update script
2018-10-25 22:22:36 +02:00
cp srv/mifosx/update-conf.sh /srv/mifosx/update-conf.sh
2018-09-13 21:10:32 +02:00
# Stop services required for setup
[ ! -z ${STOP_MARIADB} ] && service mariadb stop
2018-10-28 19:50:35 +01:00
# Register application
vmmgr register-app mifosx "${MIFOSX_ADMIN_USER}" "${MIFOSX_ADMIN_PWD}"
2018-10-28 19:50:35 +01:00
exit 0