]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/initscripts/init.d/mpd
5bc82cc8dbe8e05460d7e55e3e6d0362c9ddfac0
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / mpd
1 #!/bin/sh
2 # Begin $rc_base/init.d/mpd
3
4 # Based on sysklogd script from LFS-3.1 and earlier.
5 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
6 # ALSA specific parts by Mark Hymers - markh@linuxfromscratch.org
7 # Stores mixer settings in the default location: /etc/asound.state
8
9 . /etc/sysconfig/rc
10 . $rc_functions
11
12 case "$1" in
13 start)
14 boot_mesg "Starting MPD..."
15 /bin/nice --20 /usr/bin/mpd
16 evaluate_retval
17 ;;
18 stop)
19 boot_mesg "Stopping MPD..."
20 /usr/bin/mpd --kill
21 evaluate_retval
22 ;;
23 status)
24 statusproc /usr/bin/mpd
25 ;;
26 restart)
27 $0 stop
28 sleep 3
29 $0 start
30 ;;
31 *)
32 echo "Usage: $0 (start|stop|restart|status)"
33 exit 1
34 ;;
35 esac
36
37 # End $rc_base/init.d/alsa