diff options
| author | jvdias <jvdias@fedoraproject.org> | 2005-08-30 17:02:08 +0000 |
|---|---|---|
| committer | jvdias <jvdias@fedoraproject.org> | 2005-08-30 17:02:08 +0000 |
| commit | 3c357dd8bde11ea028ca6814698223c44976e564 (patch) | |
| tree | 8103eb3b360d3cea0200dc875f0920204c29925f | |
| parent | 296166a636b5fa4920eb6ab61766bdffc5bb8993 (diff) | |
| download | bind-3c357dd8bde11ea028ca6814698223c44976e564.tar.gz bind-3c357dd8bde11ea028ca6814698223c44976e564.tar.xz bind-3c357dd8bde11ea028ca6814698223c44976e564.zip | |
fix bug 167062
| -rw-r--r-- | bind.spec | 17 | ||||
| -rwxr-xr-x | named.init | 2 |
2 files changed, 16 insertions, 3 deletions
@@ -9,7 +9,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serve Name: bind License: BSD-like Version: 9.3.1 -Release: 11 +Release: 12 Epoch: 24 Url: http://www.isc.org/products/BIND/ Buildroot: %{_tmppath}/%{name}-root @@ -326,6 +326,11 @@ else fi :; %endif +# Files required to run test-suite outside of build tree: +cp -fp config.h $RPM_BUILD_ROOT/%{_includedir}/bind9 +cp -fp lib/dns/include/dns/forward.h $RPM_BUILD_ROOT/%{_includedir}/dns +cp -fp lib/isc/unix/include/isc/keyboard.h $RPM_BUILD_ROOT/%{_includedir}/isc +cp -fp lib/isc/include/isc/hash.h $RPM_BUILD_ROOT/%{_includedir}/isc %pre /usr/sbin/groupadd -g 25 named >/dev/null 2>&1 || :; @@ -385,11 +390,16 @@ fi; /sbin/ldconfig :; -%triggerpostun -n bind -- bind <= 22:9.3.0-2 +%triggerpostun -n bind -- bind <= 24:9.3.1-11 if [ "$1" -gt 0 ]; then +# bind <= 22:9.3.0-2: # These versions of bind installed named service at order 55 in # runlevel startup order, after programs like nis / ntp / nfs # which may need its services if using no nameservers in resolv.conf. +# bind <= 24:9.3.1-11: +# These versions ran bind with order 11 in runlevel 2, after syslog +# at order 12 . BIND should run after syslog and now has order '- 13 87'. +# rl=() for l in 0 1 2 3 4 5 6; do @@ -692,6 +702,9 @@ fi; :; %changelog +* Tue Aug 30 2005 Jason Vas Dias <jvdias@redhat.com> - 24:9.3.1-12 +- fix bug 167062: named should be started after syslogd by default + * Mon Aug 22 2005 Jason Vas Dias <jvdias@redhat.com> - 24:9.3.1-11 - fix bug 166227: host: don't do default AAAA and MX lookups with '-t a' option @@ -3,7 +3,7 @@ # named This shell script takes care of starting and stopping # named (BIND DNS server). # -# chkconfig: - 11 89 +# chkconfig: - 13 87 # description: named (BIND) is a Domain Name Server (DNS) \ # that is used to resolve host names to IP addresses. # probe: true |
