]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/initscripts/init.d/mpd
core81: set need reboot flag and restart apache.
[people/teissler/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 chown -R root.nobody /var/ipfire/mpfire/db
16 /bin/nice --5 /usr/bin/mpd
17 evaluate_retval
18 ;;
19 stop)
20 boot_mesg "Stopping MPD..."
21 /usr/bin/mpd --kill
22 evaluate_retval
23 ;;
24 status)
25 statusproc /usr/bin/mpd
26 ;;
27 restart)
28 $0 stop
29 sleep 3
30 $0 start
31 ;;
32 *)
33 echo "Usage: $0 (start|stop|restart|status)"
34 exit 1
35 ;;
36 esac
37
38 # End $rc_base/init.d/alsa