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 | 91ec7b55dfe5cff4ff3eb43a229ada8413b0bffb (patch) | |
tree | 81fbf8ab7f9db7e3c3a2706ec38abfb5ed3433a6 /net-libs | |
parent | package.mask: masking media-video/spca50x (diff) | |
download | historical-91ec7b55dfe5cff4ff3eb43a229ada8413b0bffb.tar.gz historical-91ec7b55dfe5cff4ff3eb43a229ada8413b0bffb.tar.bz2 historical-91ec7b55dfe5cff4ff3eb43a229ada8413b0bffb.zip |
add provide in init script
Package-Manager: portage-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/Manifest | 4 | ||||
-rw-r--r-- | net-libs/courier-authlib/files/courier-authlib-initd | 8 |
3 files changed, 10 insertions, 8 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/Manifest b/net-libs/courier-authlib/Manifest index 3e2737017ae7..bcffad4050e3 100644 --- a/net-libs/courier-authlib/Manifest +++ b/net-libs/courier-authlib/Manifest @@ -1,8 +1,8 @@ MD5 5b030ad9cf6097e9f917e3816ab6a4af courier-authlib-0.53.ebuild 5892 MD5 0f62cc3ae34c1c335f1ba1964844492d courier-authlib-0.52-r1.ebuild 5895 -MD5 93eed04ec9ffaea9eea3b2befa102fb9 ChangeLog 4110 +MD5 f707b4ee16b109bc1d3669891591f11d ChangeLog 4237 MD5 1639b87658242c2406f7f7f8deda7388 metadata.xml 334 MD5 73d603079009e02b50f27fcaaf0ee3c0 files/digest-courier-authlib-0.53 74 MD5 a01734679d1906a8886eccdcf66a20f5 files/digest-courier-authlib-0.52-r1 74 -MD5 4c7dedb4c21da2d9e4dbc586459de426 files/courier-authlib-initd 1038 +MD5 8d2d19af5d844966d5d9157eb3dd2f80 files/courier-authlib-initd 1051 MD5 6930587c358320ecb1043761d7ff97f1 files/configure-db4.patch 2544 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 $? } |