diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-11-20 01:17:10 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-11-20 01:17:10 +0000 |
commit | 6c49bf55ab98b6af4604c33ca14b7ec5a1f255c9 (patch) | |
tree | 21808c9ec3b578c77b7e4819b3238f0f328ff17f /www-proxy | |
parent | digest fix (diff) | |
download | gentoo-2-6c49bf55ab98b6af4604c33ca14b7ec5a1f255c9.tar.gz gentoo-2-6c49bf55ab98b6af4604c33ca14b7ec5a1f255c9.tar.bz2 gentoo-2-6c49bf55ab98b6af4604c33ca14b7ec5a1f255c9.zip |
more init script fixes as per bug #71674.
Diffstat (limited to 'www-proxy')
-rw-r--r-- | www-proxy/wwwoffle/ChangeLog | 7 | ||||
-rw-r--r-- | www-proxy/wwwoffle/files/wwwoffle-2.8c-init | 4 | ||||
-rw-r--r-- | www-proxy/wwwoffle/files/wwwoffle-2.8c-init-online | 7 |
3 files changed, 12 insertions, 6 deletions
diff --git a/www-proxy/wwwoffle/ChangeLog b/www-proxy/wwwoffle/ChangeLog index 5effd6a9be1a..b64a6306ac5c 100644 --- a/www-proxy/wwwoffle/ChangeLog +++ b/www-proxy/wwwoffle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-proxy/wwwoffle # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-proxy/wwwoffle/ChangeLog,v 1.6 2004/11/19 10:10:01 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-proxy/wwwoffle/ChangeLog,v 1.7 2004/11/20 01:17:10 dragonheart Exp $ + + 20 Nov 2004; Daniel Black <dragonheart@gentoo.org> files/wwwoffle-2.8c-init, + files/wwwoffle-2.8c-init-online: + more init script fixes as per bug #71674. Thanks again to BlaisorBlade + <blaisorblade_spam@yahoo.it> 19 Nov 2004; Daniel Black <dragonheart@gentoo.org> files/wwwoffle-2.8c-init-online: diff --git a/www-proxy/wwwoffle/files/wwwoffle-2.8c-init b/www-proxy/wwwoffle/files/wwwoffle-2.8c-init index 0a5d27941fba..eac46bf6d73c 100644 --- a/www-proxy/wwwoffle/files/wwwoffle-2.8c-init +++ b/www-proxy/wwwoffle/files/wwwoffle-2.8c-init @@ -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/www-proxy/wwwoffle/files/wwwoffle-2.8c-init,v 1.1 2004/09/19 07:18:43 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-proxy/wwwoffle/files/wwwoffle-2.8c-init,v 1.2 2004/11/20 01:17:10 dragonheart Exp $ depend() { need localmount @@ -10,7 +10,7 @@ depend() { start() { ebegin "Starting wwwoffled" start-stop-daemon --start --quiet --exec /usr/sbin/wwwoffled \ - -u wwwoffle -- -c /etc/wwwoffle/wwwoffle.conf + -u wwwoffle -- -c /etc/wwwoffle/wwwoffle.conf 2>&1 eend $? } diff --git a/www-proxy/wwwoffle/files/wwwoffle-2.8c-init-online b/www-proxy/wwwoffle/files/wwwoffle-2.8c-init-online index 2eaa6eba3749..8aacd5798c1c 100644 --- a/www-proxy/wwwoffle/files/wwwoffle-2.8c-init-online +++ b/www-proxy/wwwoffle/files/wwwoffle-2.8c-init-online @@ -1,10 +1,11 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-proxy/wwwoffle/files/wwwoffle-2.8c-init-online,v 1.2 2004/11/19 10:10:01 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-proxy/wwwoffle/files/wwwoffle-2.8c-init-online,v 1.3 2004/11/20 01:17:10 dragonheart Exp $ depend() { - need wwwoffled dns + need wwwoffled + use dns if [ -n ${IFACE} ]; then @@ -18,7 +19,7 @@ depend() { start() { ebegin "Starting wwwoffled-online" wwwoffle -online -c /etc/wwwoffle/wwwoffle.conf - wwwoffle -fetch -c /etc/wwwoffle/wwwoffle.conf & > /dev/null + wwwoffle -fetch -c /etc/wwwoffle/wwwoffle.conf & > /dev/null 2>&1 eend $? } |