Add scripts to start, stop, restart Zebra, and rebuild its indexes.
[koha.git] / debian / scripts / koha-start-zebra
1 #!/bin/sh
2 #
3 # koha-start-zebra -- Start 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.
10
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.
15
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/>.
18
19 set -e
20
21 for name in "$@"
22 do
23     echo "Starting 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         -- \
34         zebrasrv \
35         -v none,fatal,warn \
36         -f "/etc/koha/sites/$name/koha-conf.xml"
37 done