chiark / gitweb /
Support uniform audio command backend from disorder-playrtp. A useful
[disorder] / examples / disorder.init.in
1 #! /bin/sh
2 #
3 # This file is part of DisOrder.
4 # Copyright (C) 2004, 2005, 2007, 2009 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 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
20 ### BEGIN INIT INFO
21 # Provides:          disorder
22 # Required-Start:    $local_fs $network $named $remote_fs $syslog $time
23 # Required-Stop:     $local_fs $network $named $remote_fs $syslog $time
24 # Default-Start:     2 3 4 5
25 # Default-Stop:      0 1 6
26 # Short-Description: Start and stop DisOrder
27 # Description:       DisOrder is a multi-user software jukebox.
28 ### END INIT INFO
29
30 set -e
31
32 DAEMON=sbindir/disorderd
33 CLIENT="bindir/disorder --local"
34
35 PATH="$PATH:sbindir"
36
37 start_debian() {
38   printf "Starting DisOrder server: disorderd"
39   start-stop-daemon -S -q -x ${DAEMON}
40   echo .
41 }
42
43 start_generic() {
44   if ${CLIENT} version >/dev/null 2>&1; then
45     : already running
46   else
47     printf "Starting DisOrder server: disorderd"
48     ${DAEMON}
49     echo .
50   fi
51 }
52
53 start() {
54   if test -e /sbin/start-stop-daemon; then
55     start_debian
56   else
57     start_generic
58   fi
59 }
60
61 stop_debian() {
62   printf "Stopping DisOrder server: disorderd"
63   start-stop-daemon -K -o -q -x ${DAEMON}
64   echo .
65 }
66
67 stop_generic() {
68  if ${CLIENT} version >/dev/null 2>&1; then
69    printf "Stopping DisOrder server: disorderd"
70    ${CLIENT} shutdown
71    echo .
72  else
73    : not running
74  fi
75 }
76
77 stop() {
78   if test -e /sbin/start-stop-daemon; then
79     stop_debian
80   else
81     stop_generic
82   fi
83 }
84
85 reload() {
86   printf "Reloading DisOrder server configuration..."
87   ${CLIENT} reconfigure
88   echo done.
89 }
90
91 restart() {
92   stop
93   sleep 2
94   start
95 }
96
97 case "$1" in
98 start | stop | reload | restart ) "$1" ;;
99 force-reload ) reload ;;
100 * )
101   echo "usage: $0 start|stop|restart|reload" 1>&2
102   exit 1
103 esac