~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to etc/init.d/roarplaylistd

  • Committer: Dimitri John Ledkov
  • Date: 2014-05-06 18:45:46 UTC
  • Revision ID: dimitri.ledkov@canonical.com-20140506184546-5toyx56xxrue0f0v
auto update

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#
3
 
# RoarAudio PlayList Daemon initscript
4
 
#
5
 
# Copyright (c) 2008-2010 Philipp 'ph3-der-loewe' Schafft <lion@lion.leolix.org>
6
 
# Copyright (c)      2007 Javier Fernandez-Sanguino <jfs@debian.org>
7
 
#
8
 
# This is free software; you may redistribute it and/or modify
9
 
# it under the terms of the GNU General Public License as
10
 
# published by the Free Software Foundation; either version 3,
11
 
# or (at your option) any later version.
12
 
#
13
 
# This is distributed in the hope that it will be useful, but
14
 
# WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
# GNU General Public License for more details.
17
 
#
18
 
# You should have received a copy of the GNU General Public License with
19
 
# the Debian operating system, in /usr/share/common-licenses/GPL;  if
20
 
# not, write to the Free Software Foundation, Inc., 59 Temple Place,
21
 
# Suite 330, Boston, MA 02111-1307 USA
22
 
 
23
 
### BEGIN INIT INFO
24
 
# Provides:          roarplaylistd
25
 
# Required-Start:    $network $local_fs $remote_fs
26
 
# Required-Stop:     $network $local_fs $remote_fs
27
 
# Should-Start:      roaraudio-server
28
 
# Should-Stop:       roaraudio-server
29
 
# Default-Start:     2 3 4 5
30
 
# Default-Stop:      0 1 6
31
 
# Short-Description: PlayList mangement daemon for RoarAudio
32
 
# Description:       RoarAudio PlayList Daemon is a daemon managing playlist
33
 
#                    for the user and playback of those.
34
 
#                    It uses a RoarAudio server as audio backend.
35
 
### END INIT INFO
36
 
 
37
 
set -e
38
 
 
39
 
. /lib/lsb/init-functions
40
 
 
41
 
PATH=/sbin:/bin:/usr/sbin:/usr/bin
42
 
DAEMON=/usr/bin/roarplaylistd
43
 
NAME=roarplaylistd
44
 
DESC="RoarAudio PlayList Daemon"
45
 
 
46
 
PIDFILEDIR=/var/run/$NAME
47
 
PIDFILE=$PIDFILEDIR/`basename $DAEMON`.pid
48
 
SCRIPTNAME=/etc/init.d/$NAME
49
 
 
50
 
RPLD_RESTORE=true
51
 
 
52
 
# Gracefully exit if the package has been removed.
53
 
test -x $DAEMON || exit 0;
54
 
 
55
 
# Read config file if it is present.
56
 
if [ -r /etc/default/$NAME ]
57
 
then
58
 
    . /etc/default/$NAME
59
 
fi
60
 
 
61
 
[ "$RPLD" = 'YES' ] || exit 0;
62
 
 
63
 
RPLD_OPTS="--daemon $RPLD_OPTS"
64
 
 
65
 
[ "$PIDFILE"          = '' ] || RPLD_OPTS="--pidfile $PIDFILE $RPLD_OPTS"
66
 
[ "$ROARAUDIO_SERVER" = '' ] || RPLD_OPTS="--server $ROARAUDIO_SERVER $RPLD_OPTS"
67
 
 
68
 
[ "$RPLD_STORE_LOCATION" = '' ] || RPLD_OPTS="--store-path $RPLD_STORE_LOCATION $RPLD_OPTS"
69
 
 
70
 
[ "$RPLD_PLAY"        = '' ] || RPLD_OPTS="--play $RPLD_OPTS"
71
 
 
72
 
[ "$RPLD_USER"        = '' ] || RPLD_OPTS="--user $RPLD_USER $RPLD_OPTS"
73
 
[ "$RPLD_GROUP"       = '' ] || RPLD_OPTS="--group $RPLD_GROUP $RPLD_OPTS"
74
 
 
75
 
if $RPLD_RESTORE
76
 
then
77
 
 RPLD_OPTS="$RPLD_OPTS --auto-restore"
78
 
else
79
 
 RPLD_OPTS="$RPLD_OPTS --no-restore"
80
 
fi
81
 
 
82
 
if $RPLD_STORE
83
 
then
84
 
 RPLD_OPTS="$RPLD_OPTS --store"
85
 
else
86
 
 RPLD_OPTS="$RPLD_OPTS --no-store"
87
 
fi
88
 
 
89
 
case "$RPLD_AF" in
90
 
  UNIX|unix)
91
 
   RPLD_OPTS="--unix $RPLD_OPTS"
92
 
   [ "$RPLD_SOCKET" = '' ]  || RPLD_OPTS="--bind $RPLD_SOCKET $RPLD_OPTS"
93
 
  ;;
94
 
  TCP|tcp)
95
 
   RPLD_OPTS="--tcp $RPLD_OPTS"
96
 
   [ "$RPLD_PORT"   = '' ]  || RPLD_OPTS="--port $RPLD_PORT $RPLD_OPTS"
97
 
   [ "$RPLD_HOST"   = '' ]  || RPLD_OPTS="--bind $RPLD_HOST $RPLD_OPTS"
98
 
  ;;
99
 
  DECNET|DECnet|decnet)
100
 
   RPLD_OPTS="--decnet $RPLD_OPTS"
101
 
   [ "$RPLD_PORT"   = '' ]  || RPLD_OPTS="--port $RPLD_PORT $RPLD_OPTS"
102
 
   [ "$RPLD_HOST"   = '' ]  || RPLD_OPTS="--bind $RPLD_HOST $RPLD_OPTS"
103
 
  ;;
104
 
esac
105
 
 
106
 
case "$1" in
107
 
  start)
108
 
        echo -n "Starting $DESC: $NAME"
109
 
        # Set up dir to use for pidfile
110
 
        mkdir -p "$PIDFILEDIR"
111
 
        chown $RPLD_USER:$RPLD_GROUP "$PIDFILEDIR"
112
 
        # Set up dir for store
113
 
        mkdir -p "$RPLD_STORE_LOCATION"
114
 
        chown $RPLD_SOCK_USER:$RPLD_SOCK_GROUP "$RPLD_STORE_LOCATION"
115
 
        # Check if daemon is already running:
116
 
        set +e
117
 
        if [ "$PIDFILE" != '' ]
118
 
        then
119
 
         _pid=`cat $PIDFILE 2> /dev/null`
120
 
         if [ "$_pid" != '' ]
121
 
         then
122
 
          if kill -0 $_pid 2> /dev/null
123
 
          then
124
 
           echo "."
125
 
           exit 0;
126
 
          fi
127
 
         fi
128
 
        fi
129
 
        set -e
130
 
        # Start Daemon
131
 
        $DAEMON $RPLD_OPTS
132
 
        echo "."
133
 
        ;;
134
 
  stop)
135
 
        echo -n "Stopping $DESC: $NAME"
136
 
        set +e
137
 
        if [ "$PIDFILE" = '' ]
138
 
        then
139
 
         pkill $NAME
140
 
        else
141
 
         _pid=`cat $PIDFILE 2> /dev/null`
142
 
         [ "$_pid" != '' ] && kill -TERM $_pid
143
 
        fi
144
 
        set -e
145
 
        echo "."
146
 
        ;;
147
 
  status)
148
 
        echo -n "Status of $DESC: "
149
 
        set +e
150
 
        if [ "$PIDFILE" != '' ]
151
 
        then
152
 
            _pid=`cat $PIDFILE 2> /dev/null`
153
 
            if [ "$_pid" != '' ]
154
 
            then
155
 
                kill -0 $_pid 2> /dev/null
156
 
                if [ "$?" = '0' ]
157
 
                then
158
 
                    echo "running."
159
 
                    exit 0;
160
 
                else
161
 
                    echo "dead (stale pid file)."
162
 
                    exit 1;
163
 
                fi
164
 
            else
165
 
                echo "not running."
166
 
                exit 3;
167
 
            fi
168
 
        fi
169
 
        set -e
170
 
        echo "unknown (no pid file configured)."
171
 
        exit 4
172
 
        ;;
173
 
  restart|force-reload)
174
 
        $0 stop
175
 
        sleep 1
176
 
        $0 start
177
 
        ;;
178
 
  *)
179
 
        echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&2
180
 
        exit 1
181
 
        ;;
182
 
esac
183
 
 
184
 
exit 0