File: slimp3.init

package info (click to toggle)
slimp3 4.2.6-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 5,720 kB
  • ctags: 1,310
  • sloc: perl: 25,569; sh: 499; java: 56; makefile: 41
file content (56 lines) | stat: -rw-r--r-- 1,244 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#! /bin/sh
#
# This file is based on skeleton script from Miquel van Smoorenburg 
# <miquels@cistron.nl> 

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/slimp3
NAME=slimp3
DESC=slimp3

test -r /etc/default/$NAME && . /etc/default/$NAME
test ! -z $START || exit 0

test -x $DAEMON || exit 0

set -e

case "$1" in
  start)
	echo -n "Starting $DESC: "
	start-stop-daemon --start --quiet \
		--chuid slimp3 --exec $DAEMON -- --daemon \
		--pidfile /var/run/$NAME/$NAME.pid \
		$PARAMETERS
	echo "$NAME."
	;;
  stop)
	echo -n "Stopping $DESC: "
	start-stop-daemon --stop --oknodo --quiet \
		--pidfile /var/run/$NAME/$NAME.pid 
	echo "$NAME."
	;;
  reload|force-reload)
	echo "Reloading $DESC configuration files."
	start-stop-daemon --stop --signal 1 --quiet --pidfile \
		/var/run/$NAME/$NAME.pid
  ;;
  restart|force)
	echo -n "Restarting $DESC: "
	start-stop-daemon --stop --oknodo --quiet \
		--pidfile /var/run/$NAME/$NAME.pid 
	sleep 1
	start-stop-daemon --start --quiet \
		--chuid slimp3 --exec $DAEMON -- --daemon \
		--pidfile /var/run/$NAME/$NAME.pid \
		$PARAMETERS
	echo "$NAME."
	;;
  *)
	N=/etc/init.d/$NAME
	echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
	exit 1
	;;
esac

exit 0