4b60b8e8004c38b0583e15f2e2620809c19e5757
[osspd.git] / debian / osspd.init
1 #! /bin/sh
2 ### BEGIN INIT INFO
3 # Provides:          osspd
4 # Required-Start:    $remote_fs $syslog
5 # Required-Stop:     $remote_fs $syslog
6 # Default-Start:     2 3 4 5
7 # Default-Stop:      0 1 6
8 # Short-Description: OSS Proxy Daemon: Userland OSS emulation
9 # Description:       Daemon providing a userland implementation of OSS devices.
10 #                    Currently it supports forwarding OSS sound streams to
11 #                    PulseAudio and ALSA.
12 ### END INIT INFO
13
14 # Author: Ralf Jung <post@ralfj.de>
15
16 PATH=/sbin:/usr/sbin:/bin:/usr/bin
17 DESC=" OSS Proxy Daemon"
18 NAME=osspd
19 DAEMON=/usr/sbin/$NAME
20 PIDFILE=/var/run/$NAME.pid
21 SCRIPTNAME=/etc/init.d/$NAME
22
23 # Exit if the package is not installed
24 [ -x "$DAEMON" ] || exit 0
25
26 # Read configuration variable file if it is present
27 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
28
29 # Load the VERBOSE setting and other rcS variables
30 . /lib/init/vars.sh
31
32 # Define LSB log_* functions.
33 # Depend on lsb-base (>= 3.2-14) to ensure that this file is present
34 # and status_of_proc is working.
35 . /lib/lsb/init-functions
36
37 #
38 # Function that starts the daemon/service
39 #
40 do_start()
41 {
42         modprobe cuse # make sure the cuse module is loaded
43         # Return
44         #   0 if daemon has been started
45         #   1 if daemon was already running
46         #   2 if daemon could not be started
47         start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
48                 || return 1
49         start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
50                 || return 2
51 }
52
53 #
54 # Function that stops the daemon/service
55 #
56 do_stop()
57 {
58         # Return
59         #   0 if daemon has been stopped
60         #   1 if daemon was already stopped
61         #   2 if daemon could not be stopped
62         #   other if a failure occurred
63         start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
64         return "$?"
65 }
66
67 case "$1" in
68   start)
69         [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
70         do_start
71         case "$?" in
72                 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
73                 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
74         esac
75         ;;
76   stop)
77         [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
78         do_stop
79         case "$?" in
80                 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
81                 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
82         esac
83         ;;
84   status)
85         status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
86         ;;
87   restart|force-reload)
88         log_daemon_msg "Restarting $DESC" "$NAME"
89         do_stop
90         case "$?" in
91           0|1)
92                 do_start
93                 case "$?" in
94                         0) log_end_msg 0 ;;
95                         1) log_end_msg 1 ;; # Old process is still running
96                         *) log_end_msg 1 ;; # Failed to start
97                 esac
98                 ;;
99           *)
100                 # Failed to stop
101                 log_end_msg 1
102                 ;;
103         esac
104         ;;
105   *)
106         echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2
107         exit 3
108         ;;
109 esac
110
111 :