First cut at cookie support in the web interface
[disorder] / examples / disorder.init.in
1 #! /bin/sh
2 #
3 # This file is part of DisOrder.
4 # Copyright (C) 2004, 2005, 2007 Richard Kettlewell
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 2 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, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # 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, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 # USA
20 #
21
22 set -e
23
24 DAEMON=sbindir/disorderd
25 CLIENT="bindir/disorder --local"
26
27 PATH="$PATH:sbindir"
28
29 start() {
30 if ${CLIENT} version >/dev/null 2>&1; then
31 : already running
32 else
33 printf "Starting DisOrder server: disorderd"
34 ${DAEMON}
35 echo .
36 fi
37 }
38
39 stop() {
40 if ${CLIENT} version >/dev/null 2>&1; then
41 printf "Stopping DisOrder server: disorderd"
42 ${CLIENT} shutdown
43 echo .
44 else
45 : not running
46 fi
47 }
48
49 reload() {
50 printf "Reloading DisOrder server configuration..."
51 ${CLIENT} reconfigure
52 echo done.
53 }
54
55 restart() {
56 stop
57 sleep 2
58 start
59 }
60
61 case "$1" in
62 start | stop | reload | restart ) "$1" ;;
63 force-reload ) reload ;;
64 * )
65 echo "usage: $0 start|stop|restart|reload" 1>&2
66 exit 1
67 esac