2011-01-26 01:56:16 +00:00
|
|
|
%{?!with_python: %global with_python 1}
|
2009-06-21 04:14:54 +00:00
|
|
|
|
2009-06-21 04:23:10 +00:00
|
|
|
%if %{with_python}
|
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
|
|
%endif
|
|
|
|
|
2012-06-15 12:37:47 +00:00
|
|
|
%if 0%{?rhel}
|
|
|
|
%{!?munin:%define munin 0}
|
|
|
|
%else
|
|
|
|
%{!?munin:%define munin 1}
|
|
|
|
%endif
|
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
Summary: Validating, recursive, and caching DNS(SEC) resolver
|
|
|
|
Name: unbound
|
2012-12-12 13:51:45 +00:00
|
|
|
Version: 1.4.19
|
2012-12-12 23:25:41 +00:00
|
|
|
Release: 1%{?dist}
|
2008-10-31 22:29:15 +00:00
|
|
|
License: BSD
|
|
|
|
Url: http://www.nlnetlabs.nl/unbound/
|
|
|
|
Source: http://www.unbound.net/downloads/%{name}-%{version}.tar.gz
|
2011-09-14 20:20:56 +00:00
|
|
|
Source1: unbound.service
|
2008-10-31 22:29:15 +00:00
|
|
|
Source2: unbound.conf
|
2008-11-15 06:45:37 +00:00
|
|
|
Source3: unbound.munin
|
2011-01-26 01:56:16 +00:00
|
|
|
Source4: unbound_munin_
|
|
|
|
Source5: root.key
|
|
|
|
Source6: dlv.isc.org.key
|
2011-09-14 20:20:56 +00:00
|
|
|
Source7: unbound-keygen.service
|
|
|
|
Source8: tmpfiles-unbound.conf
|
2012-09-26 16:38:51 +00:00
|
|
|
Source9: example.com.key
|
|
|
|
Source10: example.com.conf
|
|
|
|
Source11: block-example.com.conf
|
2012-11-03 16:59:54 +00:00
|
|
|
# From http://data.iana.org/root-anchors/icannbundle.pem
|
|
|
|
Source12: icannbundle.pem
|
|
|
|
Source13: root.anchor
|
|
|
|
Source14: unbound.sysconfig
|
|
|
|
Source15: unbound-monthly.cron
|
2012-11-10 17:03:14 +00:00
|
|
|
Source16: unbound-munin.README
|
2012-12-20 18:36:24 +00:00
|
|
|
Patch1: unbound-1.4.19-888759.patch
|
2008-10-31 22:29:15 +00:00
|
|
|
Group: System Environment/Daemons
|
2012-09-26 16:38:51 +00:00
|
|
|
BuildRequires: flex, openssl-devel , ldns-devel >= 1.6.13
|
2011-01-26 01:56:16 +00:00
|
|
|
BuildRequires: libevent-devel expat-devel
|
2009-06-21 04:14:54 +00:00
|
|
|
%if %{with_python}
|
2010-03-01 16:22:27 +00:00
|
|
|
BuildRequires: python-devel swig
|
2009-06-21 04:14:54 +00:00
|
|
|
%endif
|
2011-09-14 20:20:56 +00:00
|
|
|
BuildRequires: systemd-units
|
2012-08-23 18:40:49 +00:00
|
|
|
# Required for SVN versions
|
|
|
|
# BuildRequires: bison
|
2010-03-01 16:22:27 +00:00
|
|
|
|
2011-09-14 20:20:56 +00:00
|
|
|
Requires(post): systemd-units
|
|
|
|
Requires(preun): systemd-units
|
|
|
|
Requires(postun): systemd-units
|
2012-09-26 16:38:51 +00:00
|
|
|
Requires: ldns >= 1.6.13
|
2008-10-31 22:29:15 +00:00
|
|
|
Requires(pre): shadow-utils
|
2012-02-28 02:19:58 +00:00
|
|
|
# Needed because /usr/sbin/unbound links unbound libs staticly
|
2012-11-03 21:33:45 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
2008-10-31 22:29:15 +00:00
|
|
|
|
2010-05-31 15:29:30 +00:00
|
|
|
Obsoletes: dnssec-conf < 1.27-2
|
|
|
|
Provides: dnssec-conf = 1.27-1
|
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
%description
|
|
|
|
Unbound is a validating, recursive, and caching DNS(SEC) resolver.
|
|
|
|
|
|
|
|
The C implementation of Unbound is developed and maintained by NLnet
|
|
|
|
Labs. It is based on ideas and algorithms taken from a java prototype
|
|
|
|
developed by Verisign labs, Nominet, Kirei and ep.net.
|
|
|
|
|
|
|
|
Unbound is designed as a set of modular components, so that also
|
|
|
|
DNSSEC (secure DNS) validation and stub-resolvers (that do not run
|
|
|
|
as a server, but are linked into an application) are easily possible.
|
|
|
|
|
2012-06-15 12:37:47 +00:00
|
|
|
%if %{munin}
|
2008-11-15 06:45:37 +00:00
|
|
|
%package munin
|
|
|
|
Summary: Plugin for the munin / munin-node monitoring package
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: munin-node
|
2009-01-14 14:57:11 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}, bc
|
2012-11-03 21:33:45 +00:00
|
|
|
BuildArch: noarch
|
2008-11-15 06:45:37 +00:00
|
|
|
|
|
|
|
%description munin
|
|
|
|
Plugin for the munin / munin-node monitoring package
|
2012-06-15 12:37:47 +00:00
|
|
|
%endif
|
2008-11-15 06:45:37 +00:00
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Development package that includes the unbound header files
|
|
|
|
Group: Development/Libraries
|
2012-11-03 21:33:45 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}, openssl-devel, ldns-devel
|
2008-10-31 22:29:15 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The devel package contains the unbound library and the include files
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
Summary: Libraries used by the unbound server and client applications
|
|
|
|
Group: Applications/System
|
|
|
|
Requires(post): /sbin/ldconfig
|
|
|
|
Requires(postun): /sbin/ldconfig
|
2009-01-14 14:57:11 +00:00
|
|
|
Requires: openssl >= 0.9.8g-12
|
2008-10-31 22:29:15 +00:00
|
|
|
|
|
|
|
%description libs
|
|
|
|
Contains libraries used by the unbound server and client applications
|
|
|
|
|
2009-06-21 04:14:54 +00:00
|
|
|
%if %{with_python}
|
|
|
|
%package python
|
|
|
|
Summary: Python modules and extensions for unbound
|
|
|
|
Group: Applications/System
|
2012-11-03 21:33:45 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
2009-06-21 04:14:54 +00:00
|
|
|
|
|
|
|
%description python
|
|
|
|
Python modules and extensions for unbound
|
|
|
|
%endif
|
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
%prep
|
|
|
|
%setup -q
|
2012-12-20 18:36:24 +00:00
|
|
|
%patch1 -p1 -b .888759
|
2008-10-31 22:29:15 +00:00
|
|
|
|
|
|
|
%build
|
2009-02-16 22:01:28 +00:00
|
|
|
%configure --with-ldns= --with-libevent --with-pthreads --with-ssl \
|
2011-08-08 22:02:05 +00:00
|
|
|
--disable-rpath --disable-static \
|
2008-11-19 23:11:51 +00:00
|
|
|
--with-conf-file=%{_sysconfdir}/%{name}/unbound.conf \
|
2009-06-21 04:14:54 +00:00
|
|
|
--with-pidfile=%{_localstatedir}/run/%{name}/%{name}.pid \
|
|
|
|
%if %{with_python}
|
|
|
|
--with-pythonmodule --with-pyunbound \
|
|
|
|
%endif
|
2012-05-24 17:36:44 +00:00
|
|
|
--enable-sha2 --disable-gost --disable-ecdsa
|
2012-09-26 22:08:08 +00:00
|
|
|
|
2010-02-24 23:01:53 +00:00
|
|
|
%{__make} %{?_smp_mflags}
|
2012-02-29 17:44:32 +00:00
|
|
|
%{__make} %{?_smp_mflags} streamtcp
|
2008-10-31 22:29:15 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%{__make} DESTDIR=%{buildroot} install
|
2012-11-03 21:44:41 +00:00
|
|
|
install -d 0755 %{buildroot}%{_unitdir} %{buildroot}%{_sysconfdir}/sysconfig
|
2012-11-03 16:59:54 +00:00
|
|
|
install -p -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/unbound.service
|
|
|
|
install -p -m 0644 %{SOURCE7} %{buildroot}%{_unitdir}/unbound-keygen.service
|
|
|
|
install -p -m 0755 %{SOURCE2} %{buildroot}%{_sysconfdir}/unbound
|
|
|
|
install -p -m 0644 %{SOURCE12} %{buildroot}%{_sysconfdir}/unbound
|
|
|
|
install -p -m 0644 %{SOURCE14} %{buildroot}%{_sysconfdir}/sysconfig/unbound
|
2012-11-10 17:03:14 +00:00
|
|
|
install -p -m 0644 %{SOURCE16} .
|
2012-11-03 16:59:54 +00:00
|
|
|
install -d 0755 %{buildroot}%{_sysconfdir}/cron.monthly
|
|
|
|
install -p -m 0755 %{SOURCE15} %{buildroot}%{_sysconfdir}/cron.monthly/unbound-anchor
|
2012-11-03 22:44:12 +00:00
|
|
|
%if %{munin}
|
2008-11-19 23:11:51 +00:00
|
|
|
# Install munin plugin and its softlinks
|
2008-11-15 06:45:37 +00:00
|
|
|
install -d 0755 %{buildroot}%{_sysconfdir}/munin/plugin-conf.d
|
2012-11-03 16:59:54 +00:00
|
|
|
install -p -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/munin/plugin-conf.d/unbound
|
2008-11-15 06:45:37 +00:00
|
|
|
install -d 0755 %{buildroot}%{_datadir}/munin/plugins/
|
2012-11-03 16:59:54 +00:00
|
|
|
install -p -m 0755 %{SOURCE4} %{buildroot}%{_datadir}/munin/plugins/unbound
|
2008-11-19 23:11:51 +00:00
|
|
|
for plugin in unbound_munin_hits unbound_munin_queue unbound_munin_memory unbound_munin_by_type unbound_munin_by_class unbound_munin_by_opcode unbound_munin_by_rcode unbound_munin_by_flags unbound_munin_histogram; do
|
|
|
|
ln -s unbound %{buildroot}%{_datadir}/munin/plugins/$plugin
|
2012-06-15 12:37:47 +00:00
|
|
|
done
|
|
|
|
%endif
|
2008-10-31 22:29:15 +00:00
|
|
|
|
2012-02-29 17:44:32 +00:00
|
|
|
# install streamtcp used for monitoring / debugging unbound's port 80/443 modes
|
|
|
|
install -m 0755 streamtcp %{buildroot}%{_sbindir}/unbound-streamtcp
|
|
|
|
|
2011-09-14 20:20:56 +00:00
|
|
|
# Install tmpfiles.d config
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/tmpfiles.d/
|
|
|
|
install -m 0644 %{SOURCE8} %{buildroot}%{_sysconfdir}/tmpfiles.d/unbound.conf
|
|
|
|
|
2011-01-26 01:56:16 +00:00
|
|
|
# install root and DLV key
|
2012-11-03 16:59:54 +00:00
|
|
|
install -m 0644 %{SOURCE5} %{SOURCE6} %{SOURCE13} %{buildroot}%{_sysconfdir}/unbound/
|
2010-02-23 20:32:08 +00:00
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
# remove static library from install (fedora packaging guidelines)
|
2011-01-26 01:56:16 +00:00
|
|
|
rm %{buildroot}%{_libdir}/*.la
|
2010-03-01 16:22:27 +00:00
|
|
|
%if %{with_python}
|
2011-09-15 18:04:40 +00:00
|
|
|
rm %{buildroot}%{python_sitearch}/*.la
|
2010-03-01 16:22:27 +00:00
|
|
|
%endif
|
2008-10-31 22:29:15 +00:00
|
|
|
|
2012-07-23 17:37:51 +00:00
|
|
|
# create softlink for all functions of libunbound man pages
|
|
|
|
for mpage in ub_ctx ub_result ub_ctx_create ub_ctx_delete ub_ctx_set_option ub_ctx_get_option ub_ctx_config ub_ctx_set_fwd ub_ctx_resolvconf ub_ctx_hosts ub_ctx_add_ta ub_ctx_add_ta_file ub_ctx_trustedkeys ub_ctx_debugout ub_ctx_debuglevel ub_ctx_async ub_poll ub_wait ub_fd ub_process ub_resolve ub_resolve_async ub_cancel ub_resolve_free ub_strerror ub_ctx_print_local_zones ub_ctx_zone_add ub_ctx_zone_remove ub_ctx_data_add ub_ctx_data_remove;
|
|
|
|
do
|
|
|
|
echo ".so man3/libunbound.3" > %{buildroot}%{_mandir}/man3/$mpage ;
|
|
|
|
done
|
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/run/unbound
|
|
|
|
|
2012-09-26 16:38:51 +00:00
|
|
|
# Install directories for easier config file drop in
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/unbound/{keys.d,conf.d,local.d}
|
|
|
|
install -p %{SOURCE9} %{buildroot}%{_sysconfdir}/unbound/keys.d/
|
|
|
|
install -p %{SOURCE10} %{buildroot}%{_sysconfdir}/unbound/conf.d/
|
|
|
|
install -p %{SOURCE11} %{buildroot}%{_sysconfdir}/unbound/local.d/
|
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
%files
|
|
|
|
%doc doc/README doc/CREDITS doc/LICENSE doc/FEATURES
|
2011-09-14 20:20:56 +00:00
|
|
|
%{_unitdir}/%{name}.service
|
|
|
|
%{_unitdir}/%{name}-keygen.service
|
2008-12-02 02:13:31 +00:00
|
|
|
%attr(0755,root,root) %dir %{_sysconfdir}/%{name}
|
2012-02-28 02:03:08 +00:00
|
|
|
%attr(0755,unbound,unbound) %dir %{_localstatedir}/run/%{name}
|
2011-09-14 20:20:56 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/tmpfiles.d/unbound.conf
|
2008-11-19 23:11:51 +00:00
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/unbound.conf
|
2012-11-03 16:59:54 +00:00
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
2012-09-26 16:38:51 +00:00
|
|
|
%attr(0775,root,unbound) %config(noreplace) %{_sysconfdir}/%{name}/keys.d
|
|
|
|
%attr(0775,root,unbound) %config(noreplace) %{_sysconfdir}/%{name}/conf.d
|
|
|
|
%attr(0775,root,unbound) %config(noreplace) %{_sysconfdir}/%{name}/local.d
|
2012-11-03 22:55:14 +00:00
|
|
|
%{_sbindir}/unbound
|
|
|
|
%{_sbindir}/unbound-checkconf
|
|
|
|
%{_sbindir}/unbound-control
|
|
|
|
%{_sbindir}/unbound-control-setup
|
|
|
|
%{_sbindir}/unbound-host
|
|
|
|
%{_sbindir}/unbound-streamtcp
|
2012-07-23 17:37:51 +00:00
|
|
|
%{_mandir}/man1/*
|
|
|
|
%{_mandir}/man5/*
|
|
|
|
%{_mandir}/man8/*
|
2008-10-31 22:29:15 +00:00
|
|
|
|
2009-06-21 04:14:54 +00:00
|
|
|
%if %{with_python}
|
|
|
|
%files python
|
2011-09-15 18:04:40 +00:00
|
|
|
%{python_sitearch}/*
|
2011-08-08 22:39:54 +00:00
|
|
|
%doc libunbound/python/examples/*
|
|
|
|
%doc pythonmod/examples/*
|
2009-06-21 04:14:54 +00:00
|
|
|
%endif
|
|
|
|
|
2012-06-15 12:37:47 +00:00
|
|
|
%if %{munin}
|
2008-11-15 06:45:37 +00:00
|
|
|
%files munin
|
2008-11-15 06:50:03 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/munin/plugin-conf.d/unbound
|
2008-11-19 23:11:51 +00:00
|
|
|
%{_datadir}/munin/plugins/unbound*
|
2012-11-10 17:03:14 +00:00
|
|
|
%doc unbound-munin.README
|
2012-06-15 12:37:47 +00:00
|
|
|
%endif
|
2008-11-15 06:45:37 +00:00
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
%files devel
|
|
|
|
%{_libdir}/libunbound.so
|
|
|
|
%{_includedir}/unbound.h
|
2012-07-23 17:37:51 +00:00
|
|
|
%{_mandir}/man3/*
|
2008-10-31 22:29:15 +00:00
|
|
|
%doc README
|
|
|
|
|
|
|
|
%files libs
|
2012-11-03 22:55:14 +00:00
|
|
|
%{_sbindir}/unbound-anchor
|
2008-10-31 22:29:15 +00:00
|
|
|
%{_libdir}/libunbound.so.*
|
2012-11-03 16:59:54 +00:00
|
|
|
%{_sysconfdir}/%{name}/icannbundle.pem
|
|
|
|
%{_sysconfdir}/cron.monthly/unbound-anchor
|
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/root.anchor
|
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/root.key
|
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/dlv.isc.org.key
|
2008-10-31 22:29:15 +00:00
|
|
|
%doc doc/README doc/LICENSE
|
|
|
|
|
|
|
|
%pre
|
|
|
|
getent group unbound >/dev/null || groupadd -r unbound
|
|
|
|
getent passwd unbound >/dev/null || \
|
2008-11-28 09:46:49 +00:00
|
|
|
useradd -r -g unbound -d %{_sysconfdir}/unbound -s /sbin/nologin \
|
2008-10-31 22:29:15 +00:00
|
|
|
-c "Unbound DNS resolver" unbound
|
|
|
|
exit 0
|
|
|
|
|
2009-03-09 20:36:02 +00:00
|
|
|
%post
|
2012-08-23 18:40:49 +00:00
|
|
|
%systemd_post unbound.service
|
|
|
|
%systemd_post unbound-keygen.service
|
2012-11-03 16:59:54 +00:00
|
|
|
%systemd_post unbound-rootkey.service
|
2008-10-31 22:29:15 +00:00
|
|
|
|
2012-11-03 16:59:54 +00:00
|
|
|
%post libs
|
|
|
|
/sbin/ldconfig
|
|
|
|
%{_sysconfdir}/cron.monthly/unbound-anchor
|
2008-10-31 22:29:15 +00:00
|
|
|
|
|
|
|
%preun
|
2012-08-23 18:40:49 +00:00
|
|
|
%systemd_preun unbound.service
|
|
|
|
%systemd_preun unbound-keygen.service
|
2012-11-03 16:59:54 +00:00
|
|
|
%systemd_preun unbound-rootkey.service
|
2008-10-31 22:29:15 +00:00
|
|
|
|
|
|
|
%postun
|
2012-08-23 18:40:49 +00:00
|
|
|
%systemd_postun_with_restart unbound.service
|
|
|
|
%systemd_postun unbound-keygen.service
|
2012-11-03 16:59:54 +00:00
|
|
|
%systemd_postun unbound-rootkey.service
|
2008-10-31 22:29:15 +00:00
|
|
|
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
|
2011-09-14 20:20:56 +00:00
|
|
|
%triggerun -- unbound < 1.4.12-4
|
|
|
|
# Save the current service runlevel info
|
|
|
|
# User must manually run systemd-sysv-convert --apply unbound
|
|
|
|
# to migrate them to systemd targets
|
|
|
|
/usr/bin/systemd-sysv-convert --save unbound >/dev/null 2>&1 ||:
|
|
|
|
|
|
|
|
# Run these because the SysV package being removed won't do them
|
|
|
|
/sbin/chkconfig --del unbound >/dev/null 2>&1 || :
|
|
|
|
/bin/systemctl try-restart unbound.service >/dev/null 2>&1 || :
|
|
|
|
/bin/systemctl try-restart unbound-keygen.service >/dev/null 2>&1 || :
|
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
%changelog
|
2012-12-12 13:51:45 +00:00
|
|
|
* Wed Dec 12 2012 Paul Wouters <pwouters@redhat.com> - 1.4.19-1
|
2012-12-20 18:36:24 +00:00
|
|
|
- Updated to 1.4.19 - this integrates all existing patches
|
|
|
|
- Patch for unbound-anchor (rhbz#888759)
|
2012-12-12 13:51:45 +00:00
|
|
|
|
2012-11-10 22:03:02 +00:00
|
|
|
* Fri Nov 09 2012 Paul Wouters <pwouters@redhat.com> - 1.4.18-6
|
|
|
|
- Patch to ensure stube-zone's aren't lost when using dnssec-triggerd
|
|
|
|
- added unbound-munin.README file
|
|
|
|
|
|
|
|
* Wed Sep 26 2012 Paul Wouters <pwouters@redhat.com> - 1.4.18-5
|
2012-09-26 16:38:51 +00:00
|
|
|
- Patch to allow wildcards in include: statements
|
|
|
|
- Add directories /etc/unbound/keys.d,conf.d,local.d with
|
|
|
|
example entries
|
2012-11-03 16:59:54 +00:00
|
|
|
- Added /etc/unbound/root.anchor, maintained by unbound-anchor
|
|
|
|
which is installed as monthly cron and PreExec in systemd config
|
|
|
|
(root.key is unused, but left installed in case people depend on it)
|
|
|
|
- Native systemd (simple) and /etc/sysconfig/unbound support
|
|
|
|
- Run unbound-checkconf in PreExec
|
|
|
|
- Moved trust anchor related files to unbound-libs, as they can
|
|
|
|
be used without the daemon.
|
2012-11-03 21:33:45 +00:00
|
|
|
- sub packages now depends on base package of same arch
|
|
|
|
- Build munin package as noarch
|
2012-11-03 22:55:14 +00:00
|
|
|
- unbound-anchor moved to unbound-libs package. It is needed
|
|
|
|
to update the root.anchor key file.
|
2012-09-26 16:38:51 +00:00
|
|
|
|
2012-09-04 18:14:02 +00:00
|
|
|
* Tue Sep 04 2012 Paul Wouters <pwouters@redhat.com> - 1.4.18-3
|
|
|
|
- Fix openssl thread locking bug under high query load
|
|
|
|
|
2012-08-23 18:40:49 +00:00
|
|
|
* Thu Aug 23 2012 Paul Wouters <pwouters@redhat.com> - 1.4.18-2
|
|
|
|
- Use new systemd-rpm macros (rhbz#850351)
|
|
|
|
- Clean up old obsoleted dnssec-conf from < fedora 15
|
|
|
|
|
2012-08-03 19:38:16 +00:00
|
|
|
* Fri Aug 03 2012 Paul Wouters <pwouters@redhat.com> - 1.4.18-1
|
|
|
|
- Updated to 1.4.18 (FIPS related fixes mostly)
|
|
|
|
- Removed patches that were merged in upstream
|
2012-08-05 13:10:11 +00:00
|
|
|
- Added comment to root.key
|
2012-08-03 19:38:16 +00:00
|
|
|
|
2012-07-23 17:37:51 +00:00
|
|
|
* Mon Jul 23 2012 Paul Wouters <pwouters@redhat.com> - 1.4.17-5
|
|
|
|
- Fix for unbound crasher (upstream bug #452)
|
|
|
|
- Support libunbound functions in man pages and place in -devel
|
|
|
|
|
2012-07-22 01:41:00 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.17-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-03 15:37:57 +00:00
|
|
|
* Tue Jul 03 2012 Paul Wouters <pwouters@redhat.com> - 1.4.17-3
|
2012-07-03 15:58:40 +00:00
|
|
|
- unbound FIPS patches for MD5,randomness (rhbz#835106)
|
2012-07-03 15:37:57 +00:00
|
|
|
|
2012-06-15 12:37:47 +00:00
|
|
|
* Fri Jun 15 2012 Adam Tkac <atkac redhat com> - 1.4.17-2
|
|
|
|
- don't build unbound-munin on RHEL
|
|
|
|
|
2012-05-24 17:36:44 +00:00
|
|
|
* Thu May 24 2012 Paul Wouters <pwouters@redhat.com> - 1.4.17-1
|
|
|
|
- Updated to 1.4.17 (which mostly brings in patches we already
|
|
|
|
applied from svn trunk)
|
|
|
|
|
2012-02-29 17:44:32 +00:00
|
|
|
* Wed Feb 29 2012 Paul Wouters <pwouters@redhat.com> - 1.4.16-3
|
|
|
|
- Since the daemon links to the libs staticly, add Requires:
|
2012-02-28 02:19:58 +00:00
|
|
|
(this is rhbz#745288)
|
2012-02-29 17:44:32 +00:00
|
|
|
- Package up streamtcp as unbound-streamtcp (for monitoring)
|
2012-02-28 02:19:58 +00:00
|
|
|
|
2012-02-28 02:03:08 +00:00
|
|
|
* Mon Feb 27 2012 Paul Wouters <pwouters@redhat.com> - 1.4.16-2
|
|
|
|
- Don't ghost the directory (rhbz#788805)
|
|
|
|
- Patch for unbound to support unbound-control forward_zone
|
|
|
|
(needed for openswan in XAUTH mode)
|
|
|
|
|
2012-02-02 15:00:37 +00:00
|
|
|
* Thu Feb 02 2012 Paul Wouters <paul@nohats.ca> - 1.4.16-1
|
|
|
|
- Upgraded to 1.4.16, which was relesed due to the soname
|
|
|
|
and some DNSSEC validation failures
|
|
|
|
|
2012-02-01 02:09:27 +00:00
|
|
|
* Wed Feb 01 2012 Paul Wouters <paul@nohats.ca> - 1.4.15-2
|
|
|
|
- Patch for SONAME version (libtool's -version-number vs -version-info)
|
|
|
|
|
2012-01-27 16:46:03 +00:00
|
|
|
* Fri Jan 27 2012 Paul Wouters <pwouters@redhat.com> - 1.4.15-1
|
|
|
|
- Upgraded to 1.4.15
|
|
|
|
- Updated unbound.conf to show how to configure listening on tls443
|
|
|
|
|
2012-01-14 07:30:46 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.14-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-19 15:29:22 +00:00
|
|
|
* Mon Dec 19 2011 Paul Wouters <paul@cypherpunks.ca> - 1.4.14-1
|
2011-12-19 15:04:11 +00:00
|
|
|
- Upgraded to 1.4.14 for CVE-2011-4528 / VU#209659
|
|
|
|
- SSL-wrapped query support for dnssec-trigger
|
|
|
|
- EDNS handling changes
|
2011-12-19 15:29:22 +00:00
|
|
|
- Removed integrated EDNS patches
|
|
|
|
- Disabled use-caps-for-id, GoDaddy domains now break on it
|
|
|
|
- Enabled new harden-below-nxdomain
|
2011-12-19 15:04:11 +00:00
|
|
|
|
2011-09-15 17:19:04 +00:00
|
|
|
* Thu Sep 15 2011 Paul Wouters <paul@xelerance.com> - 1.4.13-1
|
|
|
|
- Upgraded to 1.4.13
|
|
|
|
- Removed merged in pythonmod patch
|
|
|
|
- Added EDNS1480 patch to fix unbound on broken EDNS/UDP networks
|
2011-09-15 18:04:40 +00:00
|
|
|
- Fix python to go into sitearch instead of sitelib
|
2011-09-15 17:19:04 +00:00
|
|
|
|
2011-09-14 20:20:56 +00:00
|
|
|
* Wed Sep 14 2011 Tom Callaway <spot@fedoraproject.org> - 1.4.12-4
|
|
|
|
- convert to systemd, tmpfiles.d
|
|
|
|
|
2011-08-08 22:39:54 +00:00
|
|
|
* Mon Aug 08 2011 Paul Wouters <paul@xelerance.com> - 1.4.12-3
|
|
|
|
- Added pythonmod docs and examples
|
|
|
|
|
2011-08-08 22:02:05 +00:00
|
|
|
* Mon Aug 08 2011 Paul Wouters <paul@xelerance.com> - 1.4.12-2
|
|
|
|
- Fix for python module load in the server (Tom Hendrikx)
|
|
|
|
- No longer enable --enable-debug as it causes degraded performance
|
|
|
|
under load.
|
|
|
|
|
2011-07-19 03:44:31 +00:00
|
|
|
* Mon Jul 18 2011 Paul Wouters <paul@xelerance.com> - 1.4.12-1
|
|
|
|
- Updated to 1.4.12
|
|
|
|
|
2011-07-03 22:16:09 +00:00
|
|
|
* Sun Jul 03 2011 Paul Wouters <paul@xelerance.com> - 1.4.11-1
|
|
|
|
- Updated to 1.4.11
|
|
|
|
- removed integrated CVE patch
|
|
|
|
- updated stock unbound.conf for new options introduced
|
|
|
|
|
2011-06-07 02:07:26 +00:00
|
|
|
* Mon Jun 06 2011 Paul Wouters <paul@xelerance.com> - 1.4.10-1
|
|
|
|
- Added ghost for /var/run/unbound (bz#656710)
|
|
|
|
|
|
|
|
* Mon Jun 06 2011 Paul Wouters <paul@xelerance.com> - 1.4.9-3
|
|
|
|
- rebuilt
|
|
|
|
|
2011-05-25 19:18:44 +00:00
|
|
|
* Wed May 25 2011 Paul Wouters <paul@xelerance.com> - 1.4.9-2
|
|
|
|
- Applied patch for CVE-2011-1922 DoS vulnerability
|
|
|
|
|
2011-03-27 09:08:46 +00:00
|
|
|
* Sun Mar 27 2011 Paul Wouters <paul@xelerance.com> - 1.4.9-1
|
|
|
|
- Updated to 1.4.9
|
|
|
|
|
2011-02-12 18:01:38 +00:00
|
|
|
* Sat Feb 12 2011 Paul Wouters <paul@xelerance.com> - 1.4.8-2
|
|
|
|
- rebuilt
|
|
|
|
|
2011-01-26 01:56:16 +00:00
|
|
|
* Tue Jan 25 2011 Paul Wouters <paul@xelerance.com> - 1.4.8-1
|
|
|
|
- Updated to 1.4.8
|
|
|
|
- Enable root key for DNSSEC
|
|
|
|
- Fix unbound-munin to use proper file (could cause excessive logging)
|
|
|
|
- Build unbound-python per default
|
|
|
|
- Disable gost as Fedora/EPEL does not allow ECC and has mangled openssl
|
|
|
|
|
2010-10-26 15:20:05 +00:00
|
|
|
* Tue Oct 26 2010 Paul Wouters <paul@xelerance.com> - 1.4.5-4
|
|
|
|
- Revert last build - it was on the wrong branch
|
|
|
|
|
|
|
|
* Tue Oct 26 2010 Paul Wouters <paul@xelerance.com> - 1.4.5-3
|
|
|
|
- Disable do-ipv6 per default - causes severe degradation on non-ipv6 machines
|
|
|
|
(see comments in inbound.conf)
|
|
|
|
|
2010-06-15 23:39:07 +00:00
|
|
|
* Tue Jun 15 2010 Paul Wouters <paul@xelerance.com> - 1.4.5-2
|
|
|
|
- Bump release - forgot to upload the new tar ball.
|
|
|
|
|
2010-06-15 23:31:11 +00:00
|
|
|
* Tue Jun 15 2010 Paul Wouters <paul@xelerance.com> - 1.4.5-1
|
|
|
|
- Upgraded to 1.4.5
|
|
|
|
|
2010-05-31 15:34:14 +00:00
|
|
|
* Mon May 31 2010 Paul Wouters <paul@xelerance.com> - 1.4.4-2
|
|
|
|
- Added accidentally omitted svn patches to cvs
|
|
|
|
|
2010-05-31 15:29:30 +00:00
|
|
|
* Mon May 31 2010 Paul Wouters <paul@xelerance.com> - 1.4.4-1
|
|
|
|
- Upgraded to 1.4.4 with svn patches
|
|
|
|
- Obsolete dnssec-conf to ensure it is de-installed
|
|
|
|
|
2010-03-11 15:08:03 +00:00
|
|
|
* Thu Mar 11 2010 Paul Wouters <paul@xelerance.com> - 1.4.3-1
|
|
|
|
- Update to 1.4.3 that fixes 64bit crasher
|
|
|
|
|
2010-03-09 15:48:42 +00:00
|
|
|
* Tue Mar 09 2010 Paul Wouters <paul@xelerance.com> - 1.4.2-1
|
|
|
|
- Updated to 1.4.2
|
|
|
|
- Updated unbound.conf with new options
|
|
|
|
- Enabled pre-fetching DNSKEY records (DNSSEC speedup)
|
|
|
|
- Enabled re-fetching popular records before they expire
|
|
|
|
- Enabled logging of DNSSEC validation errors
|
|
|
|
|
2010-03-01 16:22:27 +00:00
|
|
|
* Mon Mar 01 2010 Paul Wouters <paul@xelerance.com> - 1.4.1-5
|
|
|
|
- Overriding -D_GNU_SOURCE is no longer needed. This fixes DSO issues
|
|
|
|
with pthreads
|
|
|
|
|
2010-02-24 23:01:53 +00:00
|
|
|
* Wed Feb 24 2010 Paul Wouters <paul@xelerance.com> - 1.4.1-3
|
|
|
|
- Change make/configure lines to attempt to fix -lphtread linking issue
|
|
|
|
|
2010-02-23 20:32:08 +00:00
|
|
|
* Thu Feb 18 2010 Paul Wouters <paul@xelerance.com> - 1.4.1-2
|
|
|
|
- Removed dependancy for dnssec-conf
|
|
|
|
- Added ISC DLV key (formerly in dnssec-conf)
|
|
|
|
- Fixup old DLV locations in unbound.conf file via %%post
|
2010-02-23 20:37:57 +00:00
|
|
|
- Fix parent child disagreement handling and no-ipv6 present [svn r1953]
|
2010-02-23 20:32:08 +00:00
|
|
|
|
2010-01-05 23:07:02 +00:00
|
|
|
* Tue Jan 05 2010 Paul Wouters <paul@xelerance.com> - 1.4.1-1
|
|
|
|
- Updated to 1.4.1
|
|
|
|
- Changed %%define to %%global
|
|
|
|
|
2009-10-09 01:59:19 +00:00
|
|
|
* Thu Oct 08 2009 Paul Wouters <paul@xelerance.com> - 1.3.4-2
|
|
|
|
- Bump version
|
|
|
|
|
2009-10-09 01:24:23 +00:00
|
|
|
* Thu Oct 08 2009 Paul Wouters <paul@xelerance.com> - 1.3.4-1
|
|
|
|
- Upgraded to 1.3.4. Security fix with validating NSEC3 records
|
|
|
|
|
2009-08-21 16:18:36 +00:00
|
|
|
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.3.3-2
|
|
|
|
- rebuilt with new openssl
|
|
|
|
|
2009-08-17 15:10:16 +00:00
|
|
|
* Mon Aug 17 2009 Paul Wouters <paul@xelerance.com> - 1.3.3-1
|
|
|
|
- Updated to 1.3.3
|
|
|
|
|
2009-07-27 06:31:10 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-21 04:23:10 +00:00
|
|
|
* Sat Jun 20 2009 Paul Wouters <paul@xelerance.com> - 1.3.0-2
|
|
|
|
- Added missing glob patch to cvs
|
|
|
|
- Place python macros within the %%with_python check
|
|
|
|
|
2009-06-21 04:14:54 +00:00
|
|
|
* Sat Jun 20 2009 Paul Wouters <paul@xelerance.com> - 1.3.0-1
|
|
|
|
- Updated to 1.3.0
|
|
|
|
- Added unbound-python sub package. disabled for now
|
|
|
|
- Patch from svn to fix DLV lookups
|
|
|
|
- Patches from svn to detect wrong truncated response from BIND 9.6.1 with
|
|
|
|
minimal-responses)
|
|
|
|
- Added Default-Start and Default-Stop to unbound.init
|
|
|
|
- Re-enabled --enable-sha2
|
|
|
|
- Re-enabled glob.patch
|
|
|
|
|
2009-05-20 16:43:09 +00:00
|
|
|
* Wed May 20 2009 Paul Wouters <paul@xelerance.com> - 1.2.1-7
|
|
|
|
- unbound-iterator.patch was not commited
|
|
|
|
|
2009-05-20 16:15:09 +00:00
|
|
|
* Wed May 20 2009 Paul Wouters <paul@xelerance.com> - 1.2.1-6
|
|
|
|
- Fix for https://bugzilla.redhat.com/show_bug.cgi?id=499793
|
|
|
|
|
2009-03-17 05:28:45 +00:00
|
|
|
* Tue Mar 17 2009 Paul Wouters <paul@xelerance.com> - 1.2.1-5
|
|
|
|
- Use --nocheck to avoid giving an error on missing unbound-remote certs/keys
|
|
|
|
|
2009-03-11 19:17:12 +00:00
|
|
|
* Tue Mar 10 2009 Adam Tkac <atkac redhat com> - 1.2.1-4
|
|
|
|
- enable DNSSEC only if it is enabled in sysconfig/dnssec
|
|
|
|
|
2009-03-09 20:36:02 +00:00
|
|
|
* Mon Mar 09 2009 Adam Tkac <atkac redhat com> - 1.2.1-3
|
|
|
|
- add DNSSEC support to initscript and enabled it per default
|
|
|
|
- add requires dnssec-conf
|
|
|
|
|
2009-02-25 22:57:23 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-10 15:19:33 +00:00
|
|
|
* Tue Feb 10 2009 Paul Wouters <paul@xelerance.com - 1.2.1-1
|
|
|
|
- updated to 1.2.1
|
|
|
|
|
2009-01-18 14:52:30 +00:00
|
|
|
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 1.2.0-2
|
|
|
|
- rebuild with new openssl
|
|
|
|
|
2009-01-14 14:57:11 +00:00
|
|
|
* Wed Jan 14 2009 Paul Wouters <paul@xelerance.com - 1.2.0-1
|
|
|
|
- Updated to 1.2.0
|
|
|
|
- Added dependancy on minimum SSL for CVE-2008-5077
|
|
|
|
- Added dependancy on bc for unbound-munin
|
2009-01-14 15:44:12 +00:00
|
|
|
- Added minimum requirement of libevent 1.4.5. Crashes with older versions
|
|
|
|
(note: libevent is stale in EL-4 and not in EL-5, needs fixing there)
|
2009-01-14 14:57:11 +00:00
|
|
|
- Removed dependancy on selinux-policy (will get used when available)
|
|
|
|
- Enable options as per draft-wijngaards-dnsext-resolver-side-mitigation-00.txt
|
|
|
|
- Enable unwanted-reply-threshold to mitigate against a Kaminsky attack
|
|
|
|
- Enable val-clean-additional to drop addition unsigned data from signed
|
|
|
|
response.
|
2009-01-14 15:00:44 +00:00
|
|
|
- Removed patches (got merged into upstream)
|
2009-01-14 14:57:11 +00:00
|
|
|
|
2009-01-05 13:19:32 +00:00
|
|
|
* Mon Jan 5 2009 Paul Wouters <paul@xelerance.com> - 1.1.1-7
|
|
|
|
- Modified scandir patch to silently fail when wildcard matches nothing
|
|
|
|
- Patch to allow unbound-checkconf to find empty wildcard matches
|
|
|
|
|
2009-01-05 11:50:27 +00:00
|
|
|
* Mon Jan 5 2009 Paul Wouters <paul@xelerance.com> - 1.1.1-6
|
2009-01-05 11:37:42 +00:00
|
|
|
- Added scandir patch for trusted-keys-file: option, which
|
|
|
|
is used to load multiple dnssec keys in bind file format
|
|
|
|
|
2008-12-08 20:42:45 +00:00
|
|
|
* Mon Dec 8 2008 Paul Wouters <paul@xelerance.com> - 1.1.1-4
|
|
|
|
- Added Requires: for selinux-policy >= 3.5.13-33 for proper SElinux rules.
|
|
|
|
|
2008-12-02 02:13:31 +00:00
|
|
|
* Mon Dec 1 2008 Paul Wouters <paul@xelerance.com> - 1.1.1-3
|
|
|
|
- We did not own the /etc/unbound directory (#474020)
|
|
|
|
- Fixed cvs anomalies
|
|
|
|
|
2008-11-28 09:46:49 +00:00
|
|
|
* Fri Nov 28 2008 Adam Tkac <atkac redhat com> - 1.1.1-2
|
|
|
|
- removed all obsolete chroot related stuff
|
|
|
|
- label control certs after generation correctly
|
|
|
|
|
2008-11-20 15:10:25 +00:00
|
|
|
* Thu Nov 20 2008 Paul Wouters <paul@xelerance.com> - 1.1.1-1
|
|
|
|
- Updated to unbound 1.1.1 which fixes a crasher and
|
|
|
|
addresses nlnetlabs bug #219
|
|
|
|
|
2008-11-19 23:11:51 +00:00
|
|
|
* Wed Nov 19 2008 Paul Wouters <paul@xelerance.com> - 1.1.0-3
|
|
|
|
- Remove the chroot, obsoleted by SElinux
|
|
|
|
- Add additional munin plugin links supported by unbound plugin
|
|
|
|
- Move configuration directory from /var/lib/unbound to /etc/unbound
|
|
|
|
- Modified unbound.init and unbound.conf to account for chroot changes
|
|
|
|
- Updated unbound.conf with new available options
|
|
|
|
- Enabled dns-0x20 protection per default
|
|
|
|
|
2008-11-19 15:39:16 +00:00
|
|
|
* Wed Nov 19 2008 Adam Tkac <atkac redhat com> - 1.1.0-2
|
|
|
|
- unbound-1.1.0-log_open.patch
|
|
|
|
- make sure log is opened before chroot call
|
|
|
|
- tracked as http://www.nlnetlabs.nl/bugs/show_bug.cgi?id=219
|
|
|
|
- removed /dev/log and /var/run/unbound and /etc/resolv.conf from
|
|
|
|
chroot, not needed
|
|
|
|
- don't mount files in chroot, it causes problems during updates
|
|
|
|
- fixed typo in default config file
|
|
|
|
|
2008-11-15 05:46:07 +00:00
|
|
|
* Fri Nov 14 2008 Paul Wouters <paul@xelerance.com> - 1.1.0-1
|
|
|
|
- Updated to version 1.1.0
|
2008-11-15 06:45:37 +00:00
|
|
|
- Updated unbound.conf's statistics options and remote-control
|
|
|
|
to work properly for munin
|
|
|
|
- Added unbound-munin package
|
|
|
|
- Generate unbound remote-control key/certs on first startup
|
2008-11-15 05:46:07 +00:00
|
|
|
- Required ldns is now 1.4.0
|
|
|
|
|
2008-10-31 22:29:15 +00:00
|
|
|
* Wed Oct 22 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-5
|
|
|
|
- Only call ldconfig in -libs package
|
|
|
|
- Move configure into build section
|
|
|
|
- devel subpackage should only depend on libs subpackage
|
|
|
|
|
|
|
|
* Tue Oct 21 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-4
|
|
|
|
- Fix CFLAGS getting lost in build
|
|
|
|
- Don't enable interface-automatic:yes because that
|
|
|
|
causes unbound to listen on 0.0.0.0 instead of 127.0.0.1
|
|
|
|
|
|
|
|
* Sun Oct 19 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-3
|
|
|
|
- Split off unbound-libs, make build verbose
|
|
|
|
|
|
|
|
* Thu Oct 9 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-2
|
|
|
|
- FSB compliance, chroot fixes, initscript fixes
|
|
|
|
|
|
|
|
* Thu Sep 11 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-1
|
|
|
|
- Upgraded to 1.0.2
|
|
|
|
|
|
|
|
* Wed Jul 16 2008 Paul Wouters <paul@xelerance.com> - 1.0.1-1
|
|
|
|
- upgraded to new release
|
|
|
|
|
|
|
|
* Wed May 21 2008 Paul Wouters <paul@xelerance.com> - 1.0.0-2
|
|
|
|
- Build against ldns-1.3.0
|
|
|
|
|
|
|
|
* Wed May 21 2008 Paul Wouters <paul@xelerance.com> - 1.0.0-1
|
|
|
|
- Split of -devel package, fixed dependancies, make rpmlint happy
|
|
|
|
|
|
|
|
* Thu Apr 25 2008 Wouter Wijngaards <wouter@nlnetlabs.nl> - 0.12
|
|
|
|
- Using parts from ports collection entry by Jaap Akkerhuis.
|
|
|
|
- Using Fedoraproject wiki guidelines.
|
|
|
|
|
|
|
|
* Wed Apr 23 2008 Wouter Wijngaards <wouter@nlnetlabs.nl> - 0.11
|
|
|
|
- Initial version.
|