Bug 7143 : Adding Stacey Walker to the history
[koha.git] / debian / scripts / koha-restart-zebra
blob6b5c0cadb4e27024085c5fddd231ad3c0d317bca
1 #!/bin/sh
3 # koha-restart-zebra -- Restart Zebra for named Koha instandes
4 # Copyright 2010 Catalyst IT, Ltd
5 #
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/>.
19 set -e
21 for name in "$@"
23 echo "Restarting Zebra server for $name"
24 daemon \
25 --name="$name-koha-zebra" \
26 --errlog="/var/log/koha/$name/zebra-error.log" \
27 --stdout="/var/log/koha/$name/zebra.log" \
28 --output="/var/log/koha/$name/zebra-output.log" \
29 --verbose=1 \
30 --respawn \
31 --delay=30 \
32 --user="$name-koha.$name-koha" \
33 --restart \
34 -- \
35 zebrasrv \
36 -v none,fatal,warn \
37 -f "/etc/koha/sites/$name/koha-conf.xml"
38 done