diff options
author | Jan Brinkmann <luckyduck@gentoo.org> | 2005-01-30 01:19:05 +0000 |
---|---|---|
committer | Jan Brinkmann <luckyduck@gentoo.org> | 2005-01-30 01:19:05 +0000 |
commit | 38783661a9ace888ee452a63fd8f2fba5876e8b7 (patch) | |
tree | 6db56342ebfd2eb309f994152b4090ec2099ab0b /media-sound/daapd | |
parent | Revision bump; apply debian patch to fix many critters - bug 79372. (diff) | |
download | gentoo-2-38783661a9ace888ee452a63fd8f2fba5876e8b7.tar.gz gentoo-2-38783661a9ace888ee452a63fd8f2fba5876e8b7.tar.bz2 gentoo-2-38783661a9ace888ee452a63fd8f2fba5876e8b7.zip |
slightly modified the init script to fix bug #76088
(Portage version: 2.0.51-r15)
Diffstat (limited to 'media-sound/daapd')
-rw-r--r-- | media-sound/daapd/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/daapd/files/daapd.init.d | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/media-sound/daapd/ChangeLog b/media-sound/daapd/ChangeLog index 2c140f86157f..265a1eb5a401 100644 --- a/media-sound/daapd/ChangeLog +++ b/media-sound/daapd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/daapd # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/daapd/ChangeLog,v 1.11 2005/01/03 21:21:57 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/daapd/ChangeLog,v 1.12 2005/01/30 01:19:05 luckyduck Exp $ + + 30 Jan 2005; Jan Brinkmann <luckyduck@gentoo.org> files/daapd.init.d: + slightly modified the init script to fix bug #76088 03 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> daapd-0.2.3d.ebuild: Fixed IUSE/use.local.desc, keyworded ~sparc wrt #76093, thanks Paul Forgey for diff --git a/media-sound/daapd/files/daapd.init.d b/media-sound/daapd/files/daapd.init.d index 3e88b53bbe24..37c41ab25276 100644 --- a/media-sound/daapd/files/daapd.init.d +++ b/media-sound/daapd/files/daapd.init.d @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/daapd/files/daapd.init.d,v 1.3 2004/10/05 08:49:45 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/daapd/files/daapd.init.d,v 1.4 2005/01/30 01:19:05 luckyduck Exp $ depend() { need net @@ -24,7 +24,7 @@ start() { start-stop-daemon --start --quiet --pidfile /var/run/daapd.pid \ --background --make-pidfile \ - ${SSD_OPTS} --startas /usr/bin/daapd ${DAAPD_OPTS} + ${SSD_OPTS} --startas /usr/bin/daapd -- ${DAAPD_OPTS} eend $? "Failed to start daapd" } |