Koha/debian/scripts/koha-remove
Tomas Cohen Arazi aba3db2628 Bug 8507: koha-create now supports using DOM indexing for bibs
This patch makes the koha-create script install the file zebra-biblios-dom.cfg
with the proper string substitutions inside on the new instance koha-conf.xml file.

It also adds two option switches that control the indexing mode for the instance:

 --biblio-idx {dom|grs1}
 --auth-idx {dom|grs1}

DOM indexing is set as the default for both authorities and bibliographic records.

Following drojf (thanks!) advice I arranged stuff like explained here:

  http://wiki.koha-community.org/wiki/Switching_to_dom_indexing

To test:
- Apply the patch
- Build your own packages and install them on a test server
a) Create a new instance without using the new switches like:
 $ koha-create --create-db domtest
 - Check there's a file /etc/koha/sites/domtest/zebra-biblios-dom.cfg
 - Check that /etc/koha/sites/domtest/koha-conf.xml points to:
   * zebra-biblios-dom.cfg (biblioserver section)
   * zebra-biblios-dom.cfg (publicserver section)
   * zebra-authorities-dom.cfg (authorityserver section)
 - Success means the new default is DOM
b) Play with the 4 possible combination of option switches
 $ koha-create --create-db --auth-idx grs1 --biblio-idx grs1 domtest
 $ koha-create --create-db --auth-idx grs1 --biblio-idx dom domtest
 $ koha-create --create-db --auth-idx dom --biblio-idx grs1 domtest
 $ koha-create --create-db --auth-idx dom --biblio-idx dom domtest
 - Check the koha-conf.xml file reflects the chosen options.
c) Run
 $ koha-create --help
 - It should advertise this addition accordingly.
d) Run
 $ man koha-create
 - Man page for koha-create should provide good information on the new switches behaviour

Sponsored-by: Universidad Nacional de Cordoba
Signed-off-by: Mirko Tietgen <mirko@abunchofthings.net>
Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
2013-08-13 14:25:53 +00:00

99 lines
3.6 KiB
Bash
Executable file

#!/bin/sh
#
# koha-remove -- Remove a Koha instance.
# Copyright 2010 Catalyst IT, Ltd
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
set -e
args=$(getopt -l keep-mysql -o k -n $0 -- "$@")
eval set -- $args
while [ ! -z "$1" ]
do
case "$1" in
-k|--keep-mysql) keepmysql=1; shift;;
--) shift; break;;
*) break;;
esac
shift
done
NAMES="$@"
SITECONFDIR="/etc/koha/sites"
# There has to be a better way of excluding '.' from find. But this works.
INSTANCES=`cd $SITECONFDIR && find . -type d -printf " %f" |sed s/\ .\ //`
if [ -z $NAMES ] ; then
echo "Please specify a Koha instance name. Your choices are:"
echo "$INSTANCES"
exit 1
fi
for name in $NAMES
do
# Does the directory (ie instance) name exist?
if [ ! -d $SITECONFDIR/$name ] ; then
echo Koha configuration directory for instance \"$name\" does not exist, please specify a valid Koha instance
exit 1
fi
echo "Removing Koha instance $name"
mysql_hostname="localhost"
if [ "$keepmysql" != "1" ]
then
# The grant creates the user in case it isn't, we don't want our loop to fail if it has already being deleted.
mysql --defaults-extra-file=/etc/mysql/koha-common.cnf <<eof
GRANT USAGE ON \`koha_$name\`.* TO \`koha_$name\`@\`%\`;
GRANT USAGE ON \`koha_$name\`.* TO \`koha_$name\`@\`$mysql_hostname\`;
DROP USER \`koha_$name\`@\`%\`;
DROP USER \`koha_$name\`@\`$mysql_hostname\`;
DROP DATABASE IF EXISTS \`koha_$name\`;
FLUSH PRIVILEGES;
eof
fi #`
# If the daemon is not running already, we don't want to fail this loop. So bin the result code if this fails.
koha-stop-zebra $name || /bin/true
[ -f "/etc/apache2/sites-available/$name" ] && \
rm "/etc/apache2/sites-available/$name"
[ -f "/etc/koha/sites/$name/koha-conf.xml" ] && \
rm "/etc/koha/sites/$name/koha-conf.xml"
[ -f "/etc/koha/sites/$name/zebra-biblios.cfg" ] && \
rm "/etc/koha/sites/$name/zebra-biblios.cfg"
[ -f "/etc/koha/sites/$name/zebra-biblios-dom.cfg" ] && \
rm "/etc/koha/sites/$name/zebra-biblios-dom.cfg"
[ -f "/etc/koha/sites/$name/zebra-authorities.cfg" ] && \
rm "/etc/koha/sites/$name/zebra-authorities.cfg"
[ -f "/etc/koha/sites/$name/zebra-authorities-dom.cfg" ] && \
rm "/etc/koha/sites/$name/zebra-authorities-dom.cfg"
[ -f "/etc/koha/sites/$name/zebra.passwd" ] && \
rm "/etc/koha/sites/$name/zebra.passwd"
# 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.
[ -d "/etc/koha/sites/$name" ] && \
rmdir --ignore-fail-on-non-empty "/etc/koha/sites/$name"
[ -d "/var/lock/koha/$name" ] && \
rm -r "/var/lock/koha/$name"
[ -d "/var/log/koha/$name" ] && \
rm -r "/var/log/koha/$name"
[ -d "/var/run/koha/$name" ] && \
rm -r "/var/run/koha/$name"
getent passwd "$name-koha" > /dev/null && deluser --quiet "$name-koha"
# in case the site has already been disabled, we don't want to break the loop now.
a2dissite "$name" || /bin/true
done
service apache2 restart