- fixed initscript wait loop (#426382)

This commit is contained in:
Adam Tkac 2007-12-27 14:47:47 +00:00
parent ed104584a8
commit dd1c37e33f
2 changed files with 5 additions and 2 deletions

View File

@ -21,7 +21,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
Name: bind
License: ISC
Version: 9.5.0
Release: 22.%{RELEASEVER}%{?dist}
Release: 23.%{RELEASEVER}%{?dist}
Epoch: 32
Url: http://www.isc.org/products/BIND/
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@ -660,6 +660,9 @@ rm -rf ${RPM_BUILD_ROOT}
%{_sbindir}/bind-chroot-admin
%changelog
* Thu Dec 27 2007 Adam Tkac <atkac redhat com> 32:9.5.0-23.b1
- fixed initscript wait loop (#426382)
* Thu Dec 20 2007 Adam Tkac <atkac redhat com> 32:9.5.0-22.b1
- fixed regression caused by libidn2 patch (#426348)

View File

@ -144,7 +144,7 @@ stop() {
timeout=0
RETVAL=0
while [ `/sbin/pidof -o %PPID "$named" >/dev/null` ]; do
while /sbin/pidof -o %PPID "$named" >/dev/null; do
if [ $timeout -ge $NAMED_SHUTDOWN_TIMEOUT ]; then
RETVAL=1
break