Spotter-VM/ushahidi/uninstall.sh

16 lines
389 B
Bash
Raw Normal View History

2018-10-27 15:33:22 +02:00
#!/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