From 813126ac3dd60cc377f597d5f08cfe691b953fa2 Mon Sep 17 00:00:00 2001 From: cvsdist Date: Thu, 9 Sep 2004 15:12:22 +0000 Subject: [PATCH] auto-import changelog data from ypbind-1.7-7.src.rpm Thu Apr 19 2001 Bill Nottingham - don't be in such a hurry (add a couple sleep calls) --- ypbind.init | 3 +++ ypbind.spec | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ypbind.init b/ypbind.init index 7d191dc..1978b49 100755 --- a/ypbind.init +++ b/ypbind.init @@ -40,15 +40,18 @@ start() { pid=`pidofproc ypbind` if [ -n "$pid" ]; then echo -n $"Listening for an NIS domain server." + sleep 1 times=1 until ypwhich > /dev/null 2>&1 || [ "$times" = "3" ] do RETVAL=$? echo -n "." times=$[$times+1] + sleep 1 done fi if [ $RETVAL -eq 0 ]; then + echo " `ypwhich 2>/dev/null`" touch /var/lock/subsys/ypbind else failure "attempting to contact yp server" diff --git a/ypbind.spec b/ypbind.spec index b46e3d6..2f88d12 100644 --- a/ypbind.spec +++ b/ypbind.spec @@ -1,7 +1,7 @@ Summary: The NIS daemon which binds NIS clients to an NIS domain. Name: ypbind Version: 1.7 -Release: 6 +Release: 7 Copyright: GPL Group: System Environment/Daemons Source0: ftp://ftp.us.kernel.org/pub/linux/NIS/ypbind-mt-%{PACKAGE_VERSION}.tar.gz @@ -78,6 +78,9 @@ exit 0 %doc README NEWS %changelog +* Thu Apr 19 2001 Bill Nottingham +- don't be in such a hurry (add a couple sleep calls) + * Sat Mar 3 2001 Preston Brown - much more sane ypbind init script for when networking is down.