auto-import changelog data from bind-9.1.3-5.src.rpm

Fri Oct 19 2001 Tim Waugh <twaugh@redhat.com> 9.1.3-5
- Stop 'service named reload' killing itself (#54738)
This commit is contained in:
cvsdist 2004-09-09 03:30:35 +00:00
parent 976b756d74
commit 3fb10921a5
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,5 @@
%define beta %{nil}
%define rel 4
%define rel 5
%if "%{beta}" != ""
Release: 0.%{beta}.%{rel}
%else
@ -196,6 +196,9 @@ rm -rf ${RPM_BUILD_ROOT} ${RPM_BUILD_DIR}/%{name}-%{version}
/usr/include/*
%changelog
* Fri Oct 19 2001 Tim Waugh <twaugh@redhat.com> 9.1.3-5
- Stop 'service named reload' killing itself (#54738)
* Mon Sep 3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-4
- Make sure /etc/rndc.conf isn't world-readable even after the
%post script inserted a random key (#53009)

View File

@ -80,7 +80,9 @@ restart() {
start
}
reload() {
/usr/sbin/rndc reload >/dev/null 2>&1 || /usr/bin/killall -HUP named
/usr/sbin/rndc reload >/dev/null 2>&1 || \
{ PIDS=$(pidof /usr/sbin/named) ;\
/bin/kill -HUP $PIDS ; }
return $?
}
probe() {