]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/initscripts/init.d/mpd
Some small changes for mpfire V3
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / mpd
CommitLineData
9a6214e0
CS
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
12case "$1" in
13 start)
14 boot_mesg "Starting MPD..."
6cd3f682 15 /bin/nice --5 /usr/bin/mpd
9a6214e0
CS
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 ;;
dc64838a
MT
26 restart)
27 $0 stop
28 sleep 3
29 $0 start
30 ;;
9a6214e0 31 *)
dc64838a 32 echo "Usage: $0 (start|stop|restart|status)"
9a6214e0
CS
33 exit 1
34 ;;
35esac
36
37# End $rc_base/init.d/alsa