cvsdist 2f7f4b
Summary: A DNS (Domain Name System) server.
cvsdist 2f7f4b
Name: bind
cvsdist 366442
Version: 9.2.0
cvsdist a99a1d
Release: 7
cvsdist a93eac
License: BSD-like
cvsdist 2f7f4b
Group: System Environment/Daemons
cvsdist a99a1d
Source: ftp://ftp.isc.org/isc/bind9/%{version}/bind-%{version}.tar.bz2
cvsdist aed712
Source1: bind-manpages.tar.bz2
cvsdist aed712
Source2: named.sysconfig
cvsdist 2f7f4b
Source3: named.init
cvsdist 2f7f4b
Source4: named.logrotate
cvsdist aed712
Source5: keygen.c
cvsdist 366442
Patch: bind-9.2.0rc3-varrun.patch
cvsdist 366442
Patch1: bind-9.2.0-key.patch
cvsdist aed712
Url: http://www.isc.org/products/BIND/
cvsdist 2f7f4b
Buildroot: %{_tmppath}/%{name}-root
cvsdist a99a1d
cvsdist a99a1d
BuildRequires: openssl-devel gcc glibc-devel >= 2.2.5-26 glibc-kernheaders >= 2.4-7.10 libtool 
cvsdist a99a1d
cvsdist aed712
Requires(pre,preun): shadow-utils
cvsdist aed712
Requires(post,preun): chkconfig
cvsdist aed712
Requires(post): textutils, fileutils, sed
cvsdist 0a52a5
Requires: bind-utils /bin/usleep
cvsdist 2f7f4b
cvsdist 2f7f4b
%description
cvsdist 2f7f4b
BIND (Berkeley Internet Name Domain) is an implementation of the DNS
cvsdist aed712
(Domain Name System) protocols. BIND includes a DNS server (named),
cvsdist aed712
which resolves host names to IP addresses; a resolver library
cvsdist aed712
(routines for applications to use when interfacing with DNS); and
cvsdist aed712
tools for verifying that the DNS server is operating properly.
cvsdist aed712
cvsdist 2f7f4b
%package utils
cvsdist 976b75
Summary: Utilities for querying DNS name servers.
cvsdist 976b75
Group: Applications/System
cvsdist 2f7f4b
cvsdist 2f7f4b
%description utils
cvsdist 976b75
Bind-utils contains a collection of utilities for querying DNS (Domain
cvsdist 976b75
Name System) name servers to find out information about Internet
cvsdist 976b75
hosts. These tools will provide you with the IP addresses for given
cvsdist 976b75
host names, as well as other information about registered domains and
cvsdist 976b75
network addresses.
cvsdist 2f7f4b
cvsdist 976b75
You should install bind-utils if you need to get information from DNS name
cvsdist 976b75
servers.
cvsdist 2f7f4b
cvsdist 2f7f4b
%package devel
cvsdist 976b75
Summary: Include files and libraries needed for bind DNS development.
cvsdist 976b75
Group: Development/Libraries
cvsdist aed712
Requires: bind = %{version}
cvsdist 2f7f4b
cvsdist 2f7f4b
%description devel
cvsdist 976b75
The bind-devel package contains all the include files and the library
cvsdist 976b75
required for DNS (Domain Name System) development for BIND versions
cvsdist 976b75
9.x.x.
cvsdist 2f7f4b
cvsdist 2f7f4b
%prep
cvsdist a99a1d
%setup -q -n %{name}-%{version}
cvsdist 366442
%patch -p1 -b .varrun
cvsdist 366442
%patch1 -p1 -b .key
cvsdist 2f7f4b
cvsdist 2f7f4b
%build
cvsdist 366442
LTVERSION=`libtool --version |awk '{ print $4 }' |sed -e "s/\.//;s/\..*//g"`
cvsdist 366442
if [ "$LTVERSION" -lt 14 ]; then
cvsdist 366442
	export LTCONFIG_VERSION=1.3.5
cvsdist 366442
fi
cvsdist 366442
%configure --with-libtool --with-openssl=/usr --enable-threads
cvsdist a99a1d
make %{?_smp_mflags}
cvsdist 2f7f4b
cvsdist 2f7f4b
%install
cvsdist 2f7f4b
rm -rf $RPM_BUILD_ROOT
cvsdist 2f7f4b
mkdir -p ${RPM_BUILD_ROOT}/etc/{rc.d/init.d,logrotate.d}
cvsdist aed712
mkdir -p ${RPM_BUILD_ROOT}/usr/{bin,lib,sbin,include}
cvsdist 2f7f4b
mkdir -p ${RPM_BUILD_ROOT}/var/named
cvsdist aed712
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/{man1,man5,man8}
cvsdist aed712
mkdir -p ${RPM_BUILD_ROOT}/var/run/named
cvsdist aed712
cvsdist aed712
make DESTDIR=$RPM_BUILD_ROOT install
cvsdist aed712
install -c -m 640 bin/rndc/rndc.conf $RPM_BUILD_ROOT/etc
cvsdist aed712
install -c -m 755 contrib/named-bootconf/named-bootconf.sh $RPM_BUILD_ROOT/usr/sbin/named-bootconf
cvsdist 2f7f4b
install -c -m 755 %SOURCE3 $RPM_BUILD_ROOT/etc/rc.d/init.d/named
cvsdist 2f7f4b
install -c -m 644 %SOURCE4 $RPM_BUILD_ROOT/etc/logrotate.d/named
cvsdist a93eac
touch $RPM_BUILD_ROOT/etc/rndc.key
cvsdist aed712
gcc $RPM_OPT_FLAGS -o $RPM_BUILD_ROOT/usr/sbin/dns-keygen %{SOURCE5}
cvsdist aed712
cd $RPM_BUILD_ROOT%{_mandir}
cvsdist aed712
tar xjf %{SOURCE1}
cvsdist aed712
mkdir -p $RPM_BUILD_ROOT/etc/sysconfig
cvsdist aed712
cp %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/named
cvsdist 2f7f4b
cvsdist 2f7f4b
%pre
cvsdist 2f7f4b
/usr/sbin/useradd -c "Named" -u 25 \
cvsdist 2f7f4b
	-s /bin/false -r -d /var/named named 2>/dev/null || :
cvsdist 2f7f4b
cvsdist 2f7f4b
%post
cvsdist 2f7f4b
/sbin/chkconfig --add named
cvsdist 2f7f4b
if [ -f /etc/named.boot -a ! -f /etc/named.conf ]; then
cvsdist 2f7f4b
  if [ -x /usr/sbin/named-bootconf ]; then
cvsdist 2f7f4b
    cat /etc/named.boot | /usr/sbin/named-bootconf > /etc/named.conf
cvsdist 2f7f4b
    chmod 644 /etc/named.conf
cvsdist 2f7f4b
  fi
cvsdist 2f7f4b
fi
cvsdist aed712
if [ ! -e /etc/rndc.conf.rpmnew ]; then
cvsdist aed712
  sed -e "s/@KEY@/`/usr/sbin/dns-keygen`/" /etc/rndc.conf >/etc/rndc.conf.tmp
cvsdist aed712
  mv -f /etc/rndc.conf.tmp /etc/rndc.conf
cvsdist aed712
fi
cvsdist a93eac
if [ ! -e /etc/rndc.key.rpmnew ]; then
cvsdist a93eac
  tail -n 4 /etc/rndc.conf >/etc/rndc.key
cvsdist a93eac
fi
cvsdist 976b75
chmod 0640 /etc/rndc.conf /etc/rndc.key
cvsdist 976b75
chown root:named /etc/rndc.conf /etc/rndc.key
cvsdist 976b75
exit 0
cvsdist 2f7f4b
cvsdist 2f7f4b
%preun
cvsdist 2f7f4b
if [ $1 = 0 ]; then
cvsdist 2f7f4b
   /usr/sbin/userdel named 2>/dev/null || :
cvsdist 2f7f4b
   /usr/sbin/groupdel named 2>/dev/null || :
cvsdist 2f7f4b
   /sbin/chkconfig --del named
cvsdist aed712
   [ -f /var/lock/subsys/named ] && /etc/rc.d/init.d/named stop >/dev/null 2>&1
cvsdist 2f7f4b
fi
cvsdist 2f7f4b
exit 0
cvsdist 2f7f4b
cvsdist 2f7f4b
%postun
cvsdist 2f7f4b
if [ "$1" -ge 1 ]; then
cvsdist aed712
	/etc/rc.d/init.d/named condrestart >/dev/null 2>&1 || :
cvsdist 2f7f4b
fi
cvsdist 2f7f4b
cvsdist 2f7f4b
%triggerpostun -- bind < 8.2.2_P5-15
cvsdist 2f7f4b
/sbin/chkconfig --add named
cvsdist 2f7f4b
cvsdist 2f7f4b
%clean
cvsdist 976b75
rm -rf ${RPM_BUILD_ROOT} ${RPM_BUILD_DIR}/%{name}-%{version}
cvsdist aed712
cvsdist aed712
%post utils -p /sbin/ldconfig
cvsdist aed712
cvsdist aed712
%postun utils -p /sbin/ldconfig
cvsdist 2f7f4b
cvsdist 2f7f4b
%files
cvsdist 2f7f4b
%defattr(-,root,root)
cvsdist aed712
%doc CHANGES README
cvsdist aed712
%doc doc/arm doc/draft doc/rfc doc/misc
cvsdist aed712
%config(noreplace) /etc/logrotate.d/named
cvsdist 2f7f4b
%config /etc/rc.d/init.d/named
cvsdist aed712
%config(noreplace) /etc/sysconfig/named
cvsdist 976b75
%verify(not size,not md5) %config(noreplace) %attr(0640,root,named) /etc/rndc.conf
cvsdist a93eac
%verify(not size,not md5) %config(noreplace) %attr(0640,root,named) /etc/rndc.key
cvsdist 2f7f4b
cvsdist aed712
/usr/sbin/dnssec*
cvsdist aed712
/usr/sbin/lwresd
cvsdist 2f7f4b
/usr/sbin/named
cvsdist 2f7f4b
/usr/sbin/named-bootconf
cvsdist aed712
/usr/sbin/named-check*
cvsdist 366442
/usr/sbin/rndc*
cvsdist aed712
/usr/sbin/dns-keygen
cvsdist 2f7f4b
cvsdist a93eac
%{_mandir}/man5/named.conf.5*
cvsdist aed712
%{_mandir}/man5/rndc.conf.5*
cvsdist aed712
%{_mandir}/man8/rndc.8*
cvsdist 2f7f4b
%{_mandir}/man8/named.8*
cvsdist aed712
%{_mandir}/man8/lwresd.8*
cvsdist a93eac
%{_mandir}/man8/dnssec*.8*
cvsdist 2f7f4b
cvsdist 2f7f4b
%attr(-,named,named) %dir /var/named
cvsdist aed712
%attr(-,named,named) %dir /var/run/named
cvsdist aed712
 
cvsdist 2f7f4b
%files utils
cvsdist 2f7f4b
%defattr(-,root,root)
cvsdist 2f7f4b
/usr/bin/dig
cvsdist 2f7f4b
/usr/bin/host
cvsdist 2f7f4b
/usr/bin/nslookup
cvsdist 2f7f4b
/usr/bin/nsupdate
cvsdist aed712
/usr/lib/*.so.*
cvsdist 2f7f4b
%{_mandir}/man1/host.1*
cvsdist aed712
%{_mandir}/man8/nsupdate.8*
cvsdist aed712
%{_mandir}/man1/dig.1*
cvsdist 2f7f4b
%{_mandir}/man5/resolver.5*
cvsdist 2f7f4b
%{_mandir}/man8/nslookup.8*
cvsdist 2f7f4b
cvsdist 2f7f4b
%files devel
cvsdist 2f7f4b
%defattr(-,root,root)
cvsdist aed712
/usr/lib/*.so
cvsdist aed712
/usr/lib/*.la
cvsdist aed712
/usr/lib/*.a
cvsdist aed712
/usr/include/*
cvsdist 366442
%{_mandir}/man3/*
cvsdist 366442
%{_bindir}/isc-config.sh
cvsdist 2f7f4b
cvsdist 2f7f4b
%changelog
cvsdist a99a1d
* Mon Mar 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-7
cvsdist a99a1d
- Don't exit if /etc/named.conf doesn't exist if we're running
cvsdist a99a1d
  chroot (#60868)
cvsdist a99a1d
- Revert Elliot's changes, we do require specific glibc/glibc-kernheaders
cvsdist a99a1d
  versions or bug #58335 will be back. "It compiles, therefore it works"
cvsdist a99a1d
  isn't always true.
cvsdist a99a1d
cvsdist a99a1d
* Thu Feb 28 2002 Elliot Lee <sopwith@redhat.com> 9.2.0-6
cvsdist a99a1d
- Fix BuildRequires (we don't need specific glibc/glibc-kernheaders 
cvsdist a99a1d
versions).
cvsdist a99a1d
- Use _smp_mflags
cvsdist a99a1d
cvsdist a99a1d
* Wed Feb 20 2002 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-4
cvsdist a99a1d
- rebuild, require recent autoconf, automake (#58335)
cvsdist a99a1d
cvsdist a99a1d
* Fri Jan 25 2002 Tim Powers <timp@redhat.com>
cvsdist a99a1d
- rebuild against new libssl
cvsdist a99a1d
cvsdist a99a1d
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
cvsdist a99a1d
- automated rebuild
cvsdist a99a1d
cvsdist 366442
* Tue Nov 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-1
cvsdist 366442
- 9.2.0
cvsdist 366442
cvsdist 366442
* Thu Nov 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-0.rc10.2
cvsdist 366442
- 9.2.0rc10
cvsdist 366442
cvsdist 366442
* Mon Nov  5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-0.rc8.2
cvsdist 366442
- Fix up rndc.conf (#55574)
cvsdist 366442
cvsdist 366442
* Thu Oct 25 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-0.rc8.1
cvsdist 366442
- rc8
cvsdist 366442
- Enforce --enable-threads
cvsdist 366442
cvsdist 366442
* Mon Oct 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-0.rc7.1
cvsdist 366442
- 9.2.0rc7
cvsdist 366442
- Use rndc status for "service named status", it's supposed to actually
cvsdist 366442
  work in 9.2.x.
cvsdist 366442
cvsdist 366442
* Wed Oct  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-0.rc5.1
cvsdist 366442
- 9.2.0rc5
cvsdist 366442
- Fix rpm --rebuild with ancient libtool versions (#53938, #54257)
cvsdist 366442
cvsdist 366442
* Tue Sep 25 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-0.rc4.1
cvsdist 366442
- 9.2.0rc4
cvsdist 366442
cvsdist 366442
* Fri Sep 14 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.2.0-0.rc3.1
cvsdist 366442
- 9.2.0rc3
cvsdist 366442
- remove ttl patch, I don't think we need this for 8.0.
cvsdist 366442
- remove dig.1.bz2 from the bind8-manpages tar file, 9.2 has a new dig man page
cvsdist 366442
- add lwres* man pages to -devel
cvsdist 3fb109
cvsdist 976b75
* Mon Sep  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-4
cvsdist 976b75
- Make sure /etc/rndc.conf isn't world-readable even after the
cvsdist 976b75
  %post script inserted a random key (#53009)
cvsdist 976b75
cvsdist 0a52a5
* Thu Jul 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-3
cvsdist 0a52a5
- Add build dependencies (#49368)
cvsdist 0a52a5
- Make sure running service named start several times doesn't create
cvsdist 0a52a5
  useless processes (#47596)
cvsdist 0a52a5
- Work around the named parent process returning 0 even if the config
cvsdist 0a52a5
  file is broken (it's parsed later by the child processes) (#45484)
cvsdist 0a52a5
cvsdist a93eac
* Mon Jul 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-2
cvsdist a93eac
- Don't use rndc status, it's not yet implemented (#48839)
cvsdist a93eac
cvsdist a93eac
* Sun Jul 08 2001 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist a93eac
- update to 9.1.3 release
cvsdist a93eac
cvsdist a93eac
* Tue Jul  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc3.1
cvsdist a93eac
- Fix up rndc configuration and improve security (#46586)
cvsdist a93eac
cvsdist a93eac
* Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc2.2
cvsdist a93eac
- Sync with caching-nameserver-7.1-6
cvsdist a93eac
cvsdist a93eac
* Mon Jun 25 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc2.1
cvsdist a93eac
- Update to rc2
cvsdist a93eac
cvsdist a93eac
* Fri Jun  1 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc1.3
cvsdist a93eac
- Remove resolv.conf(5) man page, it's now in man-pages
cvsdist a93eac
cvsdist a93eac
* Thu May 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc1.2
cvsdist a93eac
- Add named.conf man page from bind 8.x (outdated, but better than nothing,
cvsdist a93eac
  #42732)
cvsdist a93eac
- Rename the rndc key (#42895)
cvsdist a93eac
- Add dnssec* man pages
cvsdist a93eac
cvsdist a93eac
* Mon May 28 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc1.1
cvsdist a93eac
- 9.1.3rc1
cvsdist a93eac
- s/Copyright/License/
cvsdist a93eac
cvsdist a93eac
* Mon May  7 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.2-1
cvsdist a93eac
- 9.1.2 final. No changes between 9.1.2-0.rc1.1 and this one, except for
cvsdist a93eac
  the version number, though.
cvsdist a93eac
cvsdist a93eac
* Thu May  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.2-0.rc1.1
cvsdist a93eac
- 9.1.2rc1
cvsdist a93eac
cvsdist a93eac
* Thu Mar 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.1-1
cvsdist a93eac
- 9.1.1
cvsdist a93eac
cvsdist aed712
* Thu Mar 15 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.0-10
cvsdist aed712
- Merge fixes from 9.1.1rc5
cvsdist aed712
cvsdist aed712
* Sun Mar 11 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.0-9
cvsdist aed712
- Work around bind 8 -> bind 9 migration problem when using buggy zone files:
cvsdist aed712
  accept zones without a TTL, but spew out a big fat warning. (#31393)
cvsdist aed712
cvsdist aed712
* Thu Mar  8 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Add fixes from rc4
cvsdist aed712
cvsdist aed712
* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
cvsdist aed712
- rebuild in new environment
cvsdist aed712
cvsdist aed712
* Thu Mar  1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- killall -HUP named if rndc reload fails (#30113)
cvsdist aed712
cvsdist aed712
* Tue Feb 27 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Merge some fixes from 9.1.1rc3
cvsdist aed712
cvsdist aed712
* Tue Feb 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Don't use the standard rndc key from the documentation, instead, create a random one
cvsdist aed712
  at installation time (#26358)
cvsdist aed712
- Make /etc/rndc.conf readable by user named only, it contains secret keys
cvsdist aed712
cvsdist aed712
* Tue Feb 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- 9.1.1 probably won't be out in time, revert to 9.1.0 and apply fixes
cvsdist aed712
  from 9.1.1rc2
cvsdist aed712
- bind requires bind-utils (#28317)
cvsdist aed712
cvsdist aed712
* Tue Feb 13 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Update to rc2, fixes 2 more bugs
cvsdist aed712
- Fix build with glibc >= 2.2.1-7
cvsdist aed712
cvsdist aed712
* Thu Feb  8 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Update to 9.1.1rc1; fixes 17 bugs (14 of them affecting us;
cvsdist aed712
  1 was fixed in a Red Hat patch already, 2 others are portability
cvsdist aed712
  improvements)
cvsdist aed712
cvsdist aed712
* Wed Feb  7 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Remove initscripts 5.54 requirement (#26489)
cvsdist aed712
cvsdist aed712
* Mon Jan 29 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Add named-checkconf, named-checkzone (#25170)
cvsdist aed712
cvsdist aed712
* Mon Jan 29 2001 Trond Eivind Glomsrød <teg@redhat.com>
cvsdist aed712
- use echo, not gprintf
cvsdist aed712
cvsdist aed712
* Wed Jan 24 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Fix problems with $GENERATE
cvsdist aed712
  Patch from Daniel Roesen <droesen@entire-systems.com>
cvsdist aed712
  Bug #24890
cvsdist aed712
cvsdist aed712
* Thu Jan 18 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- 9.1.0 final
cvsdist aed712
cvsdist aed712
* Sat Jan 13 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- 9.1.0rc1
cvsdist aed712
- i18nify init script
cvsdist aed712
- bzip2 source to save space
cvsdist aed712
cvsdist aed712
* Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Fix %%postun script
cvsdist aed712
cvsdist aed712
* Tue Jan  9 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- 9.1.0b3
cvsdist aed712
cvsdist aed712
* Mon Jan  8 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Add named.conf man page from bind8 (#23503)
cvsdist aed712
cvsdist aed712
* Sun Jan  7 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Make /etc/rndc.conf and /etc/sysconfig/named noreplace
cvsdist aed712
- Make devel require bind = %%{version} rather than just bind
cvsdist aed712
cvsdist aed712
* Sun Jan  7 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Fix init script for real
cvsdist aed712
cvsdist aed712
* Sat Jan  6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Fix init script when ROOTDIR is not set
cvsdist aed712
cvsdist aed712
* Thu Jan  4 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Add hooks for setting up named to run chroot (RFE #23246)
cvsdist aed712
- Fix up requirements
cvsdist aed712
cvsdist aed712
* Fri Dec 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- 9.1.0b2
cvsdist aed712
cvsdist aed712
* Wed Dec 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Move run files to /var/run/named/ - /var/run isn't writable
cvsdist aed712
  by the user we're running as. (Bug #20665)
cvsdist aed712
cvsdist aed712
* Tue Dec 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Fix reverse lookups (#22272)
cvsdist aed712
- Run ldconfig in %post utils
cvsdist aed712
cvsdist aed712
* Tue Dec 12 2000 Karsten Hopp <karsten@redhat.de>
cvsdist aed712
- fixed logrotate script (wrong path to kill)
cvsdist aed712
- include header files in -devel package
cvsdist aed712
- bugzilla #22049, #19147, 21606
cvsdist aed712
cvsdist aed712
* Fri Dec  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- 9.1.0b1 (9.1.0 is in our timeframe and less buggy)
cvsdist aed712
cvsdist aed712
* Mon Nov 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- 9.0.1
cvsdist a47288
cvsdist aed712
* Mon Oct 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Fix initscript (Bug #19956)
cvsdist aed712
- Add sample rndc.conf (Bug #19956)
cvsdist aed712
- Fix build with tar 1.13.18
cvsdist 533e01
cvsdist aed712
* Tue Oct 10 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- Add some missing man pages (taken from bind8) (Bug #18794)
cvsdist 580697
cvsdist aed712
* Sun Sep 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- 9.0.0 final
cvsdist 2f7f4b
cvsdist aed712
* Wed Aug 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- rc5
cvsdist aed712
- fix up nslookup
cvsdist 2f7f4b
cvsdist aed712
* Thu Aug 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- rc4
cvsdist 2f7f4b
cvsdist aed712
* Thu Jul 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist aed712
- 9.0.0rc1
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist 2f7f4b
- automatic rebuild
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sun Jul  9 2000 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 2f7f4b
- add "exit 0" for uninstall case
cvsdist 2f7f4b
cvsdist 2f7f4b
* Fri Jul  7 2000 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 2f7f4b
- add prereq init.d and cleanup install section
cvsdist 2f7f4b
cvsdist 2f7f4b
* Fri Jun 30 2000 Trond Eivind Glomsrød <teg@redhat.com>
cvsdist 2f7f4b
- fix the init script
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Jun 28 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 2f7f4b
- make libbind.a and nslookup.help readable again by setting INSTALL_LIB to ""
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Jun 26 2000 Bernhard Rosenkränzer <bero@redhat.com>
cvsdist 2f7f4b
- Fix up the initscript (Bug #13033)
cvsdist 2f7f4b
- Fix build with current glibc (Bug #12755)
cvsdist 2f7f4b
- /etc/rc.d/init.d -> /etc/init.d
cvsdist 2f7f4b
- use %%{_mandir} rather than /usr/share/man
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Jun 19 2000 Bill Nottingham <notting@redhat.com>
cvsdist 2f7f4b
- fix conflict with man-pages
cvsdist 2f7f4b
- remove compatibilty chkconfig links
cvsdist 2f7f4b
- initscript munging
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 2f7f4b
- modify logrotate setup to use PID file
cvsdist 2f7f4b
- temporarily disable optimization by unsetting $RPM_OPT_FLAGS at build-time
cvsdist 2f7f4b
- actually bump the release this time
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sun Jun  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 2f7f4b
- FHS compliance
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Apr 17 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 2f7f4b
- clean up restart patch
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Apr 10 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 2f7f4b
- provide /var/named (fix for bugs #9847, #10205)
cvsdist 2f7f4b
- preserve args when restarted via ndc(8) (bug #10227)
cvsdist 2f7f4b
- make resolv.conf(5) a link to resolver(5) (bug #10245)
cvsdist 2f7f4b
- fix SYSTYPE bug in all makefiles
cvsdist 2f7f4b
- move creation of named user from %%post into %%pre
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Feb 28 2000 Bernhard Rosenkränzer <bero@redhat.com>
cvsdist 2f7f4b
- Fix TTL (patch from ISC, Bug #9820)
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Feb 16 2000 Bernhard Rosenkränzer <bero@redhat.com>
cvsdist 2f7f4b
- fix typo in spec (it's %post, without a leading blank) introduced in -6
cvsdist 2f7f4b
- change SYSTYPE to linux
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sat Feb 11 2000 Bill Nottingham <notting@redhat.com>
cvsdist 2f7f4b
- pick a standard < 100 uid/gid for named
cvsdist 2f7f4b
cvsdist 2f7f4b
* Thu Feb 04 2000 Elliot Lee <sopwith@redhat.com>
cvsdist 2f7f4b
- Pass named a '-u named' parameter by default, and add/remove user.
cvsdist 2f7f4b
cvsdist 2f7f4b
* Thu Feb  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 2f7f4b
- fix host mx bug (Bug #9021)
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
cvsdist 2f7f4b
- rebuild to fix dependencies
cvsdist 2f7f4b
- man pages are compressed
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Jan 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 2f7f4b
- It's /usr/bin/killall, not /usr/sbin/killall (Bug #8063)
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Jan 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 2f7f4b
- Fix up location of named-bootconf.pl and make it executable
cvsdist 2f7f4b
  (Bug #8028)
cvsdist 2f7f4b
- bind-devel requires bind
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Nov 15 1999 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 2f7f4b
- update to 8.2.2-P5
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Nov 10 1999 Bill Nottingham <notting@redhat.com>
cvsdist 2f7f4b
- update to 8.2.2-P3
cvsdist 2f7f4b
cvsdist 2f7f4b
* Tue Oct 12 1999 Cristian Gafton <gafton@redhat.com>
cvsdist 2f7f4b
- add patch to stop a cache only server from complaining about lame servers
cvsdist 2f7f4b
  on every request.
cvsdist 2f7f4b
cvsdist 2f7f4b
* Fri Sep 24 1999 Preston Brown <pbrown@redhat.com>
cvsdist 2f7f4b
- use real stop and start in named.init for restart, not ndc restart, it has
cvsdist 2f7f4b
  problems when named has changed during a package update... (# 4890)
cvsdist 2f7f4b
cvsdist 2f7f4b
* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
cvsdist 2f7f4b
- chkconfig --del in %preun, not %postun
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
cvsdist 2f7f4b
- initscript munging
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Jul 26 1999 Bill Nottingham <notting@redhat.com>
cvsdist 2f7f4b
- fix installed chkconfig links to match init file
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sat Jul  3 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 2f7f4b
- conflict with new (in man-1.24) man pages (#3876,#3877).
cvsdist 2f7f4b
cvsdist 2f7f4b
* Tue Jun 29 1999 Bill Nottingham <notting@redhat.com>
cvsdist 2f7f4b
- fix named.logrotate (wrong %SOURCE)
cvsdist 2f7f4b
cvsdist 2f7f4b
* Fri Jun 25 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 2f7f4b
- update to 8.2.1.
cvsdist 2f7f4b
- add named.logrotate (#3571).
cvsdist 2f7f4b
- hack around egcs-1.1.2 -m486 bug (#3413, #3485).
cvsdist 2f7f4b
- vet file list.
cvsdist 2f7f4b
cvsdist 2f7f4b
* Fri Jun 18 1999 Bill Nottingham <notting@redhat.com>
cvsdist 2f7f4b
- don't run by default
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sun May 30 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 2f7f4b
- nslookup fixes (#2463).
cvsdist 2f7f4b
- missing files (#3152).
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sat May  1 1999 Stepan Kasal <kasal@math.cas.cz>
cvsdist 2f7f4b
- nslookup patched:
cvsdist 2f7f4b
  to count numRecords properly
cvsdist 2f7f4b
  to fix subsequent calls to ls -d
cvsdist 2f7f4b
  to parse "view" and "finger" commands properly
cvsdist 2f7f4b
  the view hack updated for bind-8 (using sed)
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Mar 31 1999 Bill Nottingham <notting@redhat.com>
cvsdist 2f7f4b
- add ISC patch
cvsdist 2f7f4b
- add quick hack to make host not crash
cvsdist 2f7f4b
- add more docs
cvsdist 2f7f4b
cvsdist 2f7f4b
* Fri Mar 26 1999 Cristian Gafton <gafton@redhat.com>
cvsdist 2f7f4b
- add probing information in the init file to keep linuxconf happy
cvsdist 2f7f4b
- dont strip libbind
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist 2f7f4b
- auto rebuild in the new build environment (release 3)
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Mar 17 1999 Preston Brown <pbrown@redhat.com>
cvsdist 2f7f4b
- removed 'done' output at named shutdown.
cvsdist 2f7f4b
cvsdist 2f7f4b
* Tue Mar 16 1999 Cristian Gafton <gafton@redhat.com>
cvsdist 2f7f4b
- version 8.2
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Dec 30 1998 Cristian Gafton <gafton@redhat.com>
cvsdist 2f7f4b
- patch to use the __FDS_BITS macro
cvsdist 2f7f4b
- build for glibc 2.1
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Sep 23 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 2f7f4b
- change named.restart to /usr/sbin/ndc restart
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 2f7f4b
- install man pages correctly.
cvsdist 2f7f4b
- change K10named to K45named.
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Aug 12 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 2f7f4b
- don't start if /etc/named.conf doesn't exist.
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sat Aug  8 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 2f7f4b
- autmagically create /etc/named.conf from /etc/named.boot in %post
cvsdist 2f7f4b
- remove echo in %post
cvsdist 2f7f4b
cvsdist 2f7f4b
* Wed Jun 10 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 2f7f4b
- merge in 5.1 mods
cvsdist 2f7f4b
cvsdist 2f7f4b
* Sun Apr 12 1998 Manuel J. Galan <manolow@step.es>
cvsdist 2f7f4b
- Several essential modifications to build and install correctly.
cvsdist 2f7f4b
- Modified 'ndc' to avoid deprecated use of '-'
cvsdist 2f7f4b
cvsdist 2f7f4b
* Mon Dec 22 1997 Scott Lampert <fortunato@heavymetal.org>
cvsdist 2f7f4b
- Used buildroot
cvsdist 2f7f4b
- patched bin/named/ns_udp.c to use <libelf/nlist.h> for include
cvsdist 2f7f4b
  on Redhat 5.0 instead of <nlist.h>
cvsdist 2f7f4b