diff options
author | Scott W Taylor <swtaylor@gentoo.org> | 2005-02-05 02:55:32 +0000 |
---|---|---|
committer | Scott W Taylor <swtaylor@gentoo.org> | 2005-02-05 02:55:32 +0000 |
commit | 33e44154c3fff1b41f645ee3a4a4aea99712e6d0 (patch) | |
tree | 0162b6a3639a75356b3a566709effc9db55982ed /net-libs | |
parent | package.mask: masking media-video/spca50x (diff) | |
download | gentoo-2-33e44154c3fff1b41f645ee3a4a4aea99712e6d0.tar.gz gentoo-2-33e44154c3fff1b41f645ee3a4a4aea99712e6d0.tar.bz2 gentoo-2-33e44154c3fff1b41f645ee3a4a4aea99712e6d0.zip |
add provide in init script
(Portage version: 2.0.51-r15)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/courier-authlib/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/courier-authlib/files/courier-authlib-initd | 8 |
2 files changed, 8 insertions, 6 deletions
diff --git a/net-libs/courier-authlib/ChangeLog b/net-libs/courier-authlib/ChangeLog index a429c3f0634d..ef94fa21c2d9 100644 --- a/net-libs/courier-authlib/ChangeLog +++ b/net-libs/courier-authlib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/courier-authlib # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.26 2005/01/31 23:50:08 swtaylor Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.27 2005/02/05 02:55:32 swtaylor Exp $ + + 04 Feb 2005; Scott W Taylor <swtaylor@gentoo.org> + files/courier-authlib-initd: + add "provide authdaemond" to init script 31 Jan 2005; Scott W Taylor <swtaylor@gentoo.org> courier-authlib-0.52-r1.ebuild, courier-authlib-0.53.ebuild: diff --git a/net-libs/courier-authlib/files/courier-authlib-initd b/net-libs/courier-authlib/files/courier-authlib-initd index 77deba9550de..56b16eef34f5 100644 --- a/net-libs/courier-authlib/files/courier-authlib-initd +++ b/net-libs/courier-authlib/files/courier-authlib-initd @@ -1,9 +1,10 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/files/courier-authlib-initd,v 1.3 2004/11/27 08:40:33 swtaylor Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/files/courier-authlib-initd,v 1.4 2005/02/05 02:55:32 swtaylor Exp $ depend() { need net + provide authdaemond } checkconfig() { @@ -24,7 +25,6 @@ setauth() { start() { checkconfig || return 1 setauth - ebegin "Starting courier-authlib: ${AUTHDAEMOND}" start-stop-daemon --quiet --start --pidfile "$pidfile" --exec \ /usr/bin/env -- - $logger -pid="$pidfile" -start "${AUTHLIB}/${AUTHDAEMOND}" @@ -33,9 +33,7 @@ start() { stop() { setauth - ebegin "Stopping courier-authlib: ${AUTHDAEMOND}" - start-stop-daemon --quiet --stop \ - --pidfile "$pidfile" + start-stop-daemon --quiet --stop --pidfile "$pidfile" eend $? } |