mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-02 19:00:47 -04:00
rc script for gentoo from discobob@users.sourceforge.net
This commit is contained in:
parent
2801956df0
commit
45fe1b5c81
3
CREDITS
3
CREDITS
@ -46,3 +46,6 @@ Paul Kim (mrpickles@users.sourceforge.net)
|
|||||||
Stephen Lee (slee@nis.net)
|
Stephen Lee (slee@nis.net)
|
||||||
* Patches for proper url decoding
|
* Patches for proper url decoding
|
||||||
|
|
||||||
|
Rob Nunn (discobob@users.sourceforge.net)
|
||||||
|
* gentoo rc script
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
EXTRA_DIST = README mt-daapd.spec mt-daapd.conf mt-daapd.playlist mt-daapd
|
EXTRA_DIST = README mt-daapd.spec mt-daapd.conf mt-daapd.playlist mt-daapd mt-daapd-gentoo
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
36
contrib/mt-daapd-gentoo
Executable file
36
contrib/mt-daapd-gentoo
Executable file
@ -0,0 +1,36 @@
|
|||||||
|
#!/sbin/runscript
|
||||||
|
#
|
||||||
|
# description: mt-daapd is a multi-threaded DAAP server for iTunes
|
||||||
|
# processname: mt-daapd
|
||||||
|
# Init script to start/stop mt-daapd for Gentoo Linux 2004.2
|
||||||
|
#
|
||||||
|
# This file needs to be in your /etc/init.d directory.
|
||||||
|
# To start mt-daapd, type "/etc/init.d/mt-daapd start"
|
||||||
|
# To stop it, type "/etc/init.d/mt-daapd stop"
|
||||||
|
# To start it automagically, type "rc-update add mt-daapd default"
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# rob@robnunn.com (31st July 2004)
|
||||||
|
|
||||||
|
depend() {
|
||||||
|
# not much point having the daemon without a network
|
||||||
|
need net
|
||||||
|
# and if this goes according to plan, we provide daap
|
||||||
|
provide daap
|
||||||
|
}
|
||||||
|
|
||||||
|
# start the mt-daapd daemon. All fairly self-explanatory.
|
||||||
|
# lock files aren't necessary (as far as i can tell) since gentoo
|
||||||
|
# won't let us run multiple copies.
|
||||||
|
start() {
|
||||||
|
ebegin "Starting mt-daapd DAAP server"
|
||||||
|
start-stop-daemon --start --quiet --exec /usr/local/sbin/mt-daapd
|
||||||
|
eend $?
|
||||||
|
}
|
||||||
|
|
||||||
|
# stop the daemon
|
||||||
|
stop() {
|
||||||
|
ebegin "Stopping mt-daapd DAAP server"
|
||||||
|
start-stop-daemon --stop --quiet --exec /usr/local/sbin/mt-daapd
|
||||||
|
eend $?
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user