diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-26 06:25:53 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-26 06:25:53 +0000 |
commit | 3642104aa18527b89b882c0ee21d76ae157c1c8a (patch) | |
tree | cc6c040e5884a99a3404730e013ffbda7169b3f4 /net-nds/ypbind | |
parent | Changed ${myconf} to ${TETEX_ECONF}. (diff) | |
download | historical-3642104aa18527b89b882c0ee21d76ae157c1c8a.tar.gz historical-3642104aa18527b89b882c0ee21d76ae157c1c8a.tar.bz2 historical-3642104aa18527b89b882c0ee21d76ae157c1c8a.zip |
Added missing eend to init script.
Diffstat (limited to 'net-nds/ypbind')
-rw-r--r-- | net-nds/ypbind/files/ypbind.initd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net-nds/ypbind/files/ypbind.initd b/net-nds/ypbind/files/ypbind.initd index 4e5c245c07db..a4216d374de7 100644 --- a/net-nds/ypbind/files/ypbind.initd +++ b/net-nds/ypbind/files/ypbind.initd @@ -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/net-nds/ypbind/files/ypbind.initd,v 1.1 2004/07/24 06:37:23 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/files/ypbind.initd,v 1.2 2004/10/26 06:25:53 eradicator Exp $ depend() { need net portmap domainname @@ -32,6 +32,7 @@ start() { stop() { ebegin "Stopping ypbind" start-stop-daemon --stop --quiet --exec /usr/sbin/ypbind + eend $? # Remove binding files, if ypbind "forgets" it rm -f /var/yp/binding/* } |