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
401 B
Bash
Executable File
15 lines
401 B
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
|
|
# Remove service
|
|
rm -f /etc/init.d/sahana
|
|
rc-update -u
|
|
|
|
# Drop database and user
|
|
[ ! -e /run/openrc/started/postgres ] && service postgres start && STOP_POSTGRES=1
|
|
echo 'DROP DATABASE IF EXISTS sahana; DROP ROLE IF EXISTS sahana;' | lxc-attach -u 5432 -g 5432 postgres -- psql
|
|
[ ! -z ${STOP_POSTGRES} ] && service postgres stop
|
|
|
|
# Unregister application
|
|
vmmgr unregister-app sahana
|