Make CKAN script executable

This commit is contained in:
Disassembler 2019-09-23 15:40:59 +02:00
parent b1d705487a
commit 69f67649f3
Signed by: Disassembler
GPG Key ID: 524BD33A0EE29499
2 changed files with 2 additions and 21 deletions

0
lxc-apps/ckan/install.sh Normal file → Executable file
View File

23
lxc-apps/ckan/uninstall.sh Normal file → Executable file
View File

@ -1,27 +1,8 @@
#!/bin/sh
set -ev
# Remove cronjob
rm -f /etc/periodic/hourly/ckan
# Remove service
rm -f /etc/init.d/ckan
rc-update -u
# Drop database and user
[ ! -e /run/openrc/started/postgres ] && service postgres start && STOP_POSTGRES=1
echo 'DROP DATABASE IF EXISTS ckan; DROP DATABASE IF EXISTS ckan_datastore; DROP ROLE IF EXISTS ckan; DROP ROLE IF EXISTS ckan_datastore;' | lxc-attach -u 5432 -g 5432 postgres -- psql
[ ! -z ${STOP_POSTGRES} ] && service postgres stop
# Remove redis data
[ ! -e /run/openrc/started/redis ] && service redis start && STOP_REDIS=1
lxc-attach redis -- redis-cli -n 0 flushdb
[ ! -z ${STOP_REDIS} ] && service redis stop
# Remove solr core
[ -e /run/openrc/started/solr ] && service solr stop && START_SOLR=1
rm -rf /srv/solr/data/ckan
[ ! -z ${START_SOLR} ] && service solr start
# Remove persistent data
rm -f /srv/ckan
# Unregister application
vmmgr unregister-app ckan