3 # koha-remove -- Remove a Koha instance.
4 # Copyright 2010 Catalyst IT, Ltd
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 # include helper functions
23 if [ -f "/usr/share/koha/bin/koha-functions.sh" ]; then
24 .
"/usr/share/koha/bin/koha-functions.sh"
26 echo "Error: /usr/share/koha/bin/koha-functions.sh not present." 1>&2
30 args
=$
(getopt
-l keep-mysql
,purge-all
-o kp
-n $0 -- "$@")
35 -k|
--keep-mysql) keepmysql
=1;;
36 -p|
--purge-all) purgeall
=1;;
37 # purgeall removes all instance files in var/lib/koha and var/spool/koha
46 SITECONFDIR
="/etc/koha/sites"
47 # There has to be a better way of excluding '.' from find. But this works.
48 INSTANCES
=$
(get_instances
)
50 if [ -z $NAMES ] ; then
51 echo "Please specify a Koha instance name. Your choices are:"
58 # Does the directory (ie instance) name exist?
59 if [ ! -d $SITECONFDIR/$name ] ; then
60 echo Koha configuration directory
for instance
\"$name\" does not exist
, please specify a valid Koha instance
64 echo "Removing Koha instance $name"
65 mysql_hostname
="localhost"
66 if [ "$keepmysql" != "1" ]
68 # The grant creates the user in case it isn't, we don't want our loop to fail if it has already being deleted.
69 mysql
--defaults-extra-file=/etc
/mysql
/koha-common.cnf
<<eof
70 GRANT USAGE ON \`koha_$name\`.* TO \`koha_$name\`@\`%\`;
71 GRANT USAGE ON \`koha_$name\`.* TO \`koha_$name\`@\`$mysql_hostname\`;
72 DROP USER \`koha_$name\`@\`%\`;
73 DROP USER \`koha_$name\`@\`$mysql_hostname\`;
74 DROP DATABASE IF EXISTS \`koha_$name\`;
79 # If the daemon is not running already, we don't want to fail this loop. So bin the result code if this fails.
80 koha-stop-zebra
$name ||
/bin
/true
82 instancefile
=$
(get_apache_config_for
$name)
83 le_opacdomain
=$
(letsencrypt_get_opacdomain_for
$name)
85 [ -f "$instancefile" ] && \
87 [ -f "/etc/koha/sites/$name/koha-conf.xml" ] && \
88 rm "/etc/koha/sites/$name/koha-conf.xml"
89 [ -f "/etc/koha/sites/$name/log4perl.conf" ] && \
90 rm "/etc/koha/sites/$name/log4perl.conf"
91 [ -f "/etc/koha/sites/$name/zebra-biblios.cfg" ] && \
92 rm "/etc/koha/sites/$name/zebra-biblios.cfg"
93 [ -f "/etc/koha/sites/$name/zebra-biblios-dom.cfg" ] && \
94 rm "/etc/koha/sites/$name/zebra-biblios-dom.cfg"
95 [ -f "/etc/koha/sites/$name/zebra-authorities.cfg" ] && \
96 rm "/etc/koha/sites/$name/zebra-authorities.cfg"
97 [ -f "/etc/koha/sites/$name/zebra-authorities-dom.cfg" ] && \
98 rm "/etc/koha/sites/$name/zebra-authorities-dom.cfg"
99 [ -f "/etc/koha/sites/$name/zebra.passwd" ] && \
100 rm "/etc/koha/sites/$name/zebra.passwd"
101 [ -f "/var/lib/koha/$name/letsencrypt.enabled" ] && \
102 rm -r "/var/lib/koha/$name/letsencrypt.enabled"
103 [ -f "/etc/letsencrypt/renewal/$le_opacdomain.conf" ] && \
104 rm -r "/etc/letsencrypt/renewal/$le_opacdomain.conf"
105 # Maybe a user has left something in the config directory they want to keep? We won't delete it here, nor throw an error if the have.
106 [ -d "/etc/koha/sites/$name" ] && \
107 rmdir --ignore-fail-on-non-empty "/etc/koha/sites/$name"
108 [ -d "/var/lock/koha/$name" ] && \
109 rm -r "/var/lock/koha/$name"
110 [ -d "/var/log/koha/$name" ] && \
111 rm -r "/var/log/koha/$name"
112 [ -d "/var/run/koha/$name" ] && \
113 rm -r "/var/run/koha/$name"
114 [ "$purgeall" = "1" ] && [ -d "/var/lib/koha/$name" ] && \
115 rm -r "/var/lib/koha/$name"
116 [ "$purgeall" = "1" ] && [ -d "/var/spool/koha/$name" ] && \
117 rm -r "/var/spool/koha/$name"
118 getent passwd
"$name-koha" > /dev
/null
&& deluser
--quiet "$name-koha"
119 # in case the site has already been disabled, we don't want to break the loop now.
120 a2dissite
"$name" > /dev
/null
2>&1 || a2dissite
"${name}.conf" > /dev
/null
2>&1 ||
/bin
/true
123 service apache2 restart