16 lines
389 B
Bash
16 lines
389 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
# Remove cronjob
|
||
|
rm /etc/periodic/15min/ushahidi
|
||
|
|
||
|
# Remove service
|
||
|
rc-update del ushahidi || true
|
||
|
rm /etc/init.d/ushahidi
|
||
|
rc-update -u
|
||
|
|
||
|
# Drop database and user
|
||
|
[ ! -e /run/openrc/started/mariadb ] && service mariadb start && STOP_MARIADB=1
|
||
|
echo 'DROP DATABASE ushahidi; DROP USER ushahidi;' | lxc-attach mariadb -- mysql
|
||
|
[ ! -z ${STOP_MARIADB} ] && service mariadb stop
|