auto-import changelog data from ypbind-1.7-7.src.rpm

Thu Apr 19 2001 Bill Nottingham <notting@redhat.com>
- don't be in such a hurry (add a couple sleep calls)
This commit is contained in:
cvsdist 2004-09-09 15:12:22 +00:00
parent 5d711fc0e2
commit 813126ac3d
2 changed files with 7 additions and 1 deletions

View File

@ -40,15 +40,18 @@ start() {
pid=`pidofproc ypbind` pid=`pidofproc ypbind`
if [ -n "$pid" ]; then if [ -n "$pid" ]; then
echo -n $"Listening for an NIS domain server." echo -n $"Listening for an NIS domain server."
sleep 1
times=1 times=1
until ypwhich > /dev/null 2>&1 || [ "$times" = "3" ] until ypwhich > /dev/null 2>&1 || [ "$times" = "3" ]
do do
RETVAL=$? RETVAL=$?
echo -n "." echo -n "."
times=$[$times+1] times=$[$times+1]
sleep 1
done done
fi fi
if [ $RETVAL -eq 0 ]; then if [ $RETVAL -eq 0 ]; then
echo " `ypwhich 2>/dev/null`"
touch /var/lock/subsys/ypbind touch /var/lock/subsys/ypbind
else else
failure "attempting to contact yp server" failure "attempting to contact yp server"

View File

@ -1,7 +1,7 @@
Summary: The NIS daemon which binds NIS clients to an NIS domain. Summary: The NIS daemon which binds NIS clients to an NIS domain.
Name: ypbind Name: ypbind
Version: 1.7 Version: 1.7
Release: 6 Release: 7
Copyright: GPL Copyright: GPL
Group: System Environment/Daemons Group: System Environment/Daemons
Source0: ftp://ftp.us.kernel.org/pub/linux/NIS/ypbind-mt-%{PACKAGE_VERSION}.tar.gz Source0: ftp://ftp.us.kernel.org/pub/linux/NIS/ypbind-mt-%{PACKAGE_VERSION}.tar.gz
@ -78,6 +78,9 @@ exit 0
%doc README NEWS %doc README NEWS
%changelog %changelog
* Thu Apr 19 2001 Bill Nottingham <notting@redhat.com>
- don't be in such a hurry (add a couple sleep calls)
* Sat Mar 3 2001 Preston Brown <pbrown@redhat.com> * Sat Mar 3 2001 Preston Brown <pbrown@redhat.com>
- much more sane ypbind init script for when networking is down. - much more sane ypbind init script for when networking is down.