Disassembler
ce325cf3d0
- Bump basic OS to Alpine 3.9 - Restructure repo and add layer versioning - Use JSON for all metadata - Merge abuild branch (but without abuild)
15 lines
446 B
Bash
Executable File
15 lines
446 B
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
|
|
# Remove service
|
|
rm -f /etc/init.d/mifosx
|
|
rc-update -u
|
|
|
|
# Drop database and user
|
|
[ ! -e /run/openrc/started/mariadb ] && service mariadb start && STOP_MARIADB=1
|
|
echo 'DROP DATABASE IF EXISTS `mifosplatform-tenants`; DROP DATABASE IF EXISTS `mifostenant-default`; DROP USER IF EXISTS `mifosx`;' | lxc-attach mariadb -- mysql
|
|
[ ! -z ${STOP_MARIADB} ] && service mariadb stop
|
|
|
|
# Unregister application
|
|
vmmgr unregister-app mifosx
|