123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- Summary: Fast and lean authoritative DNS Name Server
- Summary(ja): 高速で最小限のAuthoritative専用DNSネームサーバ
- Name: nsd
- Version: 4.1.10
- Release: 1%{?_dist_release}
- License: BSD
- Url: http://www.nlnetlabs.nl/%{name}/
- Source: http://www.nlnetlabs.nl/downloads/%{name}/%{name}-%{version}.tar.gz
- Source1: nsd.init
- Source3: nsd.sysconfig
- Patch0: nsd-4.1.10-config.patch
- Group: System Environment/Daemons
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- Vendor: Project Vine
- Distribution: Vine Linux
- BuildRequires: flex, libevent-devel, openssl-devel
- Requires(pre): shadow-utils
- %description
- NSD is a complete implementation of an authoritative DNS name server.
- For further information about what NSD is and what NSD is not please
- consult the REQUIREMENTS document which is a part of this distribution
- %description -l ja
- NSD は Authoritative DNSネームサーバの完全な実装です。
- NSD に関する詳しい情報は REQUIREMENTS ドキュメントを参照してください。
- %prep
- %setup -q
- %patch0 -p1
- %build
- %configure \
- --with-configdir=%{_sysconfdir}/nsd \
- --with-nsd_conf_file=%{_sysconfdir}/nsd/nsd.conf \
- --with-zonesdir=%{_sysconfdir}/nsd \
- --with-pidfile=%{_localstatedir}/run/%{name}/%{name}.pid \
- --with-dbfile=%{_localstatedir}/lib/%{name}/nsd.db \
- --with-difffile=%{_localstatedir}/lib/%{name}/ixfr.db \
- --with-xfrdfile=%{_localstatedir}/lib/%{name}/ixfr.state \
- --with-max-ips=1024 \
- --with-ssl \
- --with-user=nsd \
- --enable-bind8-stats \
- --enable-checking \
- --enable-mmap \
- --enable-nsec3 \
- --enable-ratelimit
- %{__make} %{?_smp_mflags}
- #convert to utf8
- iconv -f iso8859-1 -t utf-8 doc/RELNOTES > doc/RELNOTES.utf8
- iconv -f iso8859-1 -t utf-8 doc/CREDITS > doc/CREDITS.utf8
- mv -f doc/RELNOTES.utf8 doc/RELNOTES
- mv -f doc/CREDITS.utf8 doc/CREDITS
- %install
- rm -rf %{buildroot}
- %{__make} DESTDIR=%{buildroot} install
- install -d -m 0755 %{buildroot}%{_initrddir}
- install -m 0755 %{SOURCE1} %{buildroot}/%{_initrddir}/nsd
- install -d -m 0700 %{buildroot}%{_localstatedir}/run/%{name}
- install -d -m 0700 %{buildroot}%{_localstatedir}/lib/%{name}
- install -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig
- install -m 0755 %{SOURCE3} %{buildroot}/%{_sysconfdir}/sysconfig/%{name}
- # change .sample to normal config files
- mv %{buildroot}%{_sysconfdir}/nsd/nsd.conf.sample %{buildroot}%{_sysconfdir}/nsd/nsd.conf
- %clean
- rm -rf ${RPM_BUILD_ROOT}
- %files
- %defattr(-,root,root,-)
- %doc doc/*
- %doc contrib/nsd.zones2nsd.conf
- %dir %{_sysconfdir}/nsd/
- %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/nsd/nsd.conf
- #%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/nsd/nsd.zones
- %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/sysconfig/nsd
- %attr(0755,root,root) %{_initrddir}/%{name}
- %ghost %attr(0755,%{name},%{name}) %dir %{_localstatedir}/run/%{name}
- %attr(0755,%{name},%{name}) %dir %{_localstatedir}/lib/%{name}
- %{_sbindir}/*
- %{_mandir}/*/*
- %pre
- getent group nsd >/dev/null || groupadd -r nsd
- getent passwd nsd >/dev/null || \
- useradd -r -g nsd -d /etc/nsd -s /sbin/nologin \
- -c "nsd daemon account" nsd
- exit 0
- %post
- /sbin/chkconfig --add %{name}
- chown -R nsd.nsd %{_localstatedir}/lib/nsd 2>/dev/null ||:
- chown -R nsd.nsd %{_localstatedir}/run/nsd 2>/dev/null ||:
- if [ ! -f %{_sysconfdir}/nsd/nsd_control.pem ]; then
- /usr/sbin/nsd-control-setup
- fi
- %preun
- if [ $1 -eq 0 ]; then
- /sbin/service %{name} stop
- /sbin/chkconfig --del %{name}
- fi
- %postun
- if [ "$1" -ge "1" ]; then
- /sbin/service %{name} condrestart
- fi
- %changelog
- * Thu Jun 16 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.10-1
- - new upstream release.
- * Wed Mar 16 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.9-1
- - new upstream release.
- * Mon Mar 14 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.8-2
- - rebuilt with openssl-1.0.2g.
- * Sat Mar 12 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.8-1
- - new upstream release.
- * Thu Dec 10 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.7-1
- - new upstream release.
- * Tue Nov 3 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.6-1
- - new upstream release.
- * Fri Jun 26 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.3-1
- - new upstream release.
- - dropped Source2 (no longer needed).
- * Sat Feb 23 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.15-1
- - new upstream release
- * Thu Jul 19 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.12-1
- - new upstream release
- * Wed Feb 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.10-1
- - new upstream release
- * Fri Mar 25 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.8-1
- - new upstream release
- * Sat May 29 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.4-1
- - initial build for Vine Linux
- * Wed Jan 06 2010 Paul Wouters <paul@xelerance.com> - 3.2.4-1
- - Updated to nsd 3.2.4
- * Tue Jan 05 2010 Paul Wouters <paul@xelerance.com> - 3.2.3-4
- - Incorporated Ville Mattila's fixes to nsd.cron
- - Support for NSD_AUTOREBUILD in /etc/sysconfig/nsd [Ville]
- * Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 3.2.3-3
- - rebuilt with new openssl
- * Thu Aug 20 2009 Ville Mattila <vmattila@csc.fi> - 3.2.3-2
- - The 'nsdc patch' and 'nsdc rebuild' commands wrote a %%1 file by mistake
- * Mon Aug 17 2009 Paul Wouters <paul@xelerance.com> - 3.2.3-1
- -Updated to version 3.2.3
- * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.2-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Sat Jun 06 2009 Paul Wouters <paul@xelerance.com> - 3.2.2-3
- - Fixed /dev/nul which cause a file \%%1 to be written by cron
- - Bump for EVR.
- * Mon May 18 2009 Paul Wouters <paul@xelerance.com> - 3.2.2-1
- - Upgraded to 3.2.2 security release
- http://www.nlnetlabs.nl/publications/NSD_vulnerability_announcement.html
- * Thu Apr 09 2009 Ville Mattila <vmattila@csc.fi> - 3.2.1-6
- - Make various file paths used by the nsd.init script configurable
- from /etc/sysconfig/nsd.
- - Add template /etc/sysconfig/nsd.
- * Sun Mar 08 2009 Paul Wouters <paul@xelerance.com> - 3.2.1-5
- - nsd used the 'named' subsystem in one call in the init script
- * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Mon Jan 26 2009 Paul Wouters <paul@xelerance.com> - 3.2.1-3
- - Fix init script 'unary operator' error.
- * Mon Jan 26 2009 Paul Wouters <paul@xelerance.com> - 3.2.1-1
- - Updated to new version 3.2.1
- * Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 3.2.0-4
- - rebuild with new openssl
- * Mon Nov 24 2008 Paul Wouters <paul@xelerance.com> - 3.2.0-3
- - Updates summary as per Richard Hughes guidelines
- * Mon Nov 10 2008 Paul Wouters <paul@xelerance.com> - 3.2.0-2
- - Bump version after pre-release version correction.
- * Mon Nov 10 2008 Paul Wouters <paul@xelerance.com> - 3.2.0-1
- - 3.2.0-1
- * Thu Oct 9 2008 Paul Wouters <paul@xelerance.com> - 3.1.1-1
- - updated to 3.1.1
- * Mon Aug 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.1.0-2
- - fix license tag
- - fix static user creation
- * Mon Jun 30 2008 Paul Wouters <paul@xelerance.com> - 3.1.0-1
- - Updated to 3.1.0
- * Tue May 6 2008 Paul Wouters <paul@xelerance.com> - 3.0.8-2
- - Fix /dev/null redirection [Venkatesh Krishnamurthi]
- * Tue May 6 2008 Paul Wouters <paul@xelerance.com> - 3.0.8-1
- - Updated to 3.0.8
- * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.0.7-3
- - Autorebuild for GCC 4.3
- * Wed Dec 5 2007 Paul Wouters <paul@xelerance.com> - 3.0.7-2
- - Rebuild for new libcrypto
- * Tue Nov 13 2007 Paul Wouters <paul@xelerance.com> - 3.0.7-1
- - Updated to new version
- - fix RELNOTES/README to be utf8
- - Fix path to nsd.db in cron job.
- * Thu Nov 8 2007 Paul Wouters <paul@xelerance.com> - 3.0.6-7
- - Modified cron to only rebuild/reload when zone updates
- have been received
- * Wed Nov 7 2007 Paul Wouters <paul@xelerance.com> - 3.0.6-6
- - Added hourly cron job to do various maintenance tasks
- - Added nsd rebuild to create the proper nsd.db file on startup
- - Added nsd patch on shutdown to ensure zonefiles are up to date
- * Tue Oct 2 2007 Paul Wouters <paul@xelerance.com> - 3.0.6-5
- - nsdc update and nsdc notify are no longer needed in initscript.
- * Mon Sep 24 2007 Jesse Keating <jkeating@redhat.com> - 3.0.6-4
- - Bump release for upgrade path.
- * Fri Sep 14 2007 Paul Wouters <paul@xelerance.com> 3.0.6-3
- - Do not include examples from nsd.conf.sample that causes
- bogus network traffic.
- * Fri Sep 14 2007 Paul Wouters <paul@xelerance.com> 3.0.6-2
- - Change locations of ixfr.db and xfrd.state to /var/lib/nsd
- - Enable NSEC3
- - Delay running nsdc update until after nsd has started
- - Delete xfrd.state on nsd stop
- - Run nsdc notify in the background, since it can take
- a very long time when remote servers are unavailable.
- * Tue Sep 11 2007 Paul Wouters <paul@xelerance.com> 3.0.6-1
- - Upgraded to 3.0.6
- - Do not include bind2nsd, since it didn't compile for me
- * Fri Jul 13 2007 Paul Wouters <paul@xelerance.com> 3.0.5-2
- - Fix init script, bug #245546
- * Fri Mar 23 2007 Paul Wouters <paul@xelerance.com> 3.0.5-1
- - Upgraded to 3.0.5
- * Thu Dec 7 2006 Paul Wouters <paul@xelerance.com> 3.0.3-1
- - Upgraded to 3.0.3
- * Mon Nov 27 2006 Paul Wouters <paul@xelerance.com> 3.0.2-1
- - Upgraded to 3.0.2.
- - Use new configuration file nsd.conf. Still needs migration script.
- patch from Farkas Levente <lfarkas@bppiac.hu>
- * Mon Oct 16 2006 Paul Wouters <paul@xelerance.com> 2.3.6-2
- - Bump version for upgrade path
- * Thu Oct 12 2006 Paul Wouters <paul@xelerance.com> 2.3.6-1
- - Upgraded to 2.3.6
- - Removed obsolete workaround in nsd.init
- - Fixed spec file so daemon gets properly restarted on upgrade
- * Mon Sep 11 2006 Paul Wouters <paul@xelerance.com> 2.3.5-4
- - Rebuild requested for PT_GNU_HASH support from gcc
- - Removed dbaccess.c from doc section
- * Mon Jun 26 2006 Paul Wouters <paul@xelerance.com> - 2.3.5-3
- - Bump version for FC-x upgrade path
- * Mon Jun 26 2006 Paul Wouters <paul@xelerance.com> - 2.3.5-1
- - Upgraded to nsd-2.3.5
- * Sun May 7 2006 Paul Wouters <paul@xelerance.com> - 2.3.4-3
- - Upgraded to nsd-2.3.4.
- - Removed manual install targets because DESTDIR is now supported
- - Re-enabled --checking, checking patch no longer needed and removed.
- - Work around in nsd.init for nsd failing to start when there is no ipv6
- * Thu Dec 15 2005 Paul Wouters <paul@xelerance.com> - 2.3.3-7
- - chkconfig and attribute changes as proposed by Dmitry Butskoy
- * Thu Dec 15 2005 Paul Wouters <paul@xelerance.com> - 2.3.3-6
- - Moved pid file to /var/run/nsd/nsd.pid.
- - Use _localstatedir instead of "/var"
- * Tue Dec 13 2005 Paul Wouters <paul@xelerance.com> - 2.3.3-5
- - Added BuildRequires for openssl-devel, removed Requires for openssl.
- * Mon Dec 12 2005 Paul Wouters <paul@xelerance.com> - 2.3.3-4
- - upgraded to nsd-2.3.3
- * Wed Dec 7 2005 Tom "spot" Callaway <tcallawa@redhat.com> - 2.3.2-2
- - minor cleanups
- * Mon Dec 5 2005 Paul Wouters <paul@xelerance.com> - 2.3.2-1
- - Upgraded to 2.3.2. Changed post scripts to comply to Fedora
- Extras policies (eg do not start daemon on fresh install)
- * Tue Oct 4 2005 Paul Wouters <paul@xelerance.com> - 2.3.1-1
- - Initial version
|