2006-12-19 00:15:14 +01:00
|
|
|
#
|
2011-02-24 12:36:18 +01:00
|
|
|
# spec file for package bind
|
2006-12-19 00:15:14 +01:00
|
|
|
#
|
2021-01-26 09:58:48 +01:00
|
|
|
# Copyright (c) 2021 SUSE LLC
|
2006-12-19 00:15:14 +01:00
|
|
|
#
|
2008-08-13 23:21:12 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-11-10 11:52:26 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2006-12-19 00:15:14 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2021-05-09 14:35:56 +02:00
|
|
|
%define _buildshell /bin/bash
|
2017-11-24 17:29:49 +01:00
|
|
|
%define VENDOR SUSE
|
2020-03-23 08:34:53 +01:00
|
|
|
%if 0%{?suse_version} >= 1500
|
|
|
|
%define with_systemd 1
|
|
|
|
%else
|
|
|
|
%define with_systemd 0
|
2017-11-24 17:29:49 +01:00
|
|
|
# Defines for user and group add
|
|
|
|
%define NAMED_UID 44
|
|
|
|
%define NAMED_UID_NAME named
|
|
|
|
%define NAMED_GID 44
|
|
|
|
%define NAMED_GID_NAME named
|
|
|
|
%define NAMED_COMMENT Name server daemon
|
|
|
|
%define NAMED_HOMEDIR %{_localstatedir}/lib/named
|
|
|
|
%define NAMED_SHELL /bin/false
|
2017-12-07 11:37:08 +01:00
|
|
|
%define GROUPADD_NAMED getent group %{NAMED_GID_NAME} >/dev/null || %{_sbindir}/groupadd -g %{NAMED_GID} -o -r %{NAMED_GID_NAME}
|
|
|
|
%define USERADD_NAMED getent passwd %{NAMED_UID_NAME} >/dev/null || %{_sbindir}/useradd -r -o -g %{NAMED_GID_NAME} -u %{NAMED_UID} -s %{NAMED_SHELL} -c "%{NAMED_COMMENT}" -d %{NAMED_HOMEDIR} %{NAMED_UID_NAME}
|
|
|
|
%define USERMOD_NAMED getent passwd %{NAMED_UID_NAME} >/dev/null || %{_sbindir}/usermod -s %{NAMED_SHELL} -d %{NAMED_HOMEDIR} %{NAMED_UID_NAME}
|
2018-02-08 14:15:18 +01:00
|
|
|
%endif
|
2019-07-22 09:51:09 +02:00
|
|
|
%if 0%{?suse_version} < 1315
|
|
|
|
%define with_sfw2 1
|
|
|
|
%else
|
|
|
|
%define with_sfw2 0
|
|
|
|
%endif
|
2018-02-08 14:15:18 +01:00
|
|
|
|
2017-11-24 11:22:50 +01:00
|
|
|
#Compat macro for new _fillupdir macro introduced in Nov 2017
|
|
|
|
%if ! %{defined _fillupdir}
|
2017-11-24 17:29:49 +01:00
|
|
|
%define _fillupdir %{_localstatedir}/adm/fillup-templates
|
2017-11-24 11:22:50 +01:00
|
|
|
%endif
|
2006-12-19 00:15:14 +01:00
|
|
|
Name: bind
|
2021-07-29 15:39:41 +02:00
|
|
|
Version: 9.16.19
|
2017-11-24 17:29:49 +01:00
|
|
|
Release: 0
|
2006-12-19 00:15:14 +01:00
|
|
|
Summary: Domain Name System (DNS) Server (named)
|
2017-11-25 16:31:35 +01:00
|
|
|
License: MPL-2.0
|
2006-12-19 00:15:14 +01:00
|
|
|
Group: Productivity/Networking/DNS/Servers
|
2021-05-11 23:04:47 +02:00
|
|
|
URL: https://www.isc.org/bind/
|
|
|
|
Source0: https://downloads.isc.org/isc/bind9/%{version}/bind-%{version}.tar.xz
|
|
|
|
Source1: https://downloads.isc.org/isc/bind9/%{version}/bind-%{version}.tar.xz.sha512.asc
|
|
|
|
Source2: vendor-files.tar.bz2
|
2017-11-24 17:29:49 +01:00
|
|
|
# from http://www.isc.org/about/openpgp/ ... changes yearly apparently.
|
|
|
|
Source4: %{name}.keyring
|
2006-12-19 00:15:14 +01:00
|
|
|
Source9: ftp://ftp.internic.net/domain/named.root
|
2015-09-22 22:15:47 +02:00
|
|
|
Source40: dnszone-schema.txt
|
2017-11-24 17:29:49 +01:00
|
|
|
Source60: dlz-schema.txt
|
2021-04-30 13:15:37 +02:00
|
|
|
# configuation file for systemd-tmpfiles
|
2018-07-19 07:20:17 +02:00
|
|
|
Source70: bind.conf
|
2021-04-30 13:15:37 +02:00
|
|
|
# configuation file for systemd-sysusers
|
2020-03-23 08:34:53 +01:00
|
|
|
Source72: named.conf
|
2006-12-19 00:15:14 +01:00
|
|
|
Patch52: named-bootconf.diff
|
2018-06-05 11:30:33 +02:00
|
|
|
Patch56: bind-ldapdump-use-valid-host.patch
|
2021-06-28 09:10:05 +02:00
|
|
|
Patch68: bind-fix-build-with-older-sphinx.patch
|
2014-10-16 16:25:14 +02:00
|
|
|
BuildRequires: libcap-devel
|
|
|
|
BuildRequires: libmysqlclient-devel
|
2017-11-24 17:29:49 +01:00
|
|
|
BuildRequires: libopenssl-devel
|
2014-10-16 16:25:14 +02:00
|
|
|
BuildRequires: libtool
|
|
|
|
BuildRequires: openldap2-devel
|
|
|
|
BuildRequires: openssl
|
2017-11-24 17:29:49 +01:00
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: python3
|
2020-12-05 18:16:58 +01:00
|
|
|
BuildRequires: python3-Sphinx
|
2017-11-24 17:29:49 +01:00
|
|
|
BuildRequires: python3-ply
|
2014-10-16 16:25:14 +02:00
|
|
|
BuildRequires: update-desktop-files
|
2017-11-24 17:29:49 +01:00
|
|
|
BuildRequires: pkgconfig(json)
|
|
|
|
BuildRequires: pkgconfig(krb5)
|
2020-06-19 08:28:39 +02:00
|
|
|
BuildRequires: pkgconfig(libidn2)
|
2020-02-22 08:32:01 +01:00
|
|
|
BuildRequires: pkgconfig(libuv)
|
2017-11-24 17:29:49 +01:00
|
|
|
BuildRequires: pkgconfig(libxml-2.0)
|
|
|
|
Requires: %{name}-utils
|
|
|
|
Requires(post): %fillup_prereq
|
|
|
|
Requires(post): bind-utils
|
2019-11-10 11:52:26 +01:00
|
|
|
Provides: bind8 = %{version}
|
|
|
|
Provides: bind9 = %{version}
|
2014-10-16 16:25:14 +02:00
|
|
|
Provides: dns_daemon
|
2017-11-24 17:29:49 +01:00
|
|
|
Obsoletes: bind8 < %{version}
|
|
|
|
Obsoletes: bind9 < %{version}
|
|
|
|
%if %{with_systemd}
|
|
|
|
BuildRequires: systemd-rpm-macros
|
2020-03-23 08:34:53 +01:00
|
|
|
BuildRequires: sysuser-shadow
|
|
|
|
BuildRequires: sysuser-tools
|
2018-02-08 14:15:18 +01:00
|
|
|
BuildRequires: pkgconfig(libsystemd)
|
|
|
|
BuildRequires: pkgconfig(systemd)
|
2020-03-23 08:34:53 +01:00
|
|
|
%{?systemd_ordering}
|
|
|
|
%sysusers_requires
|
2006-12-19 00:15:14 +01:00
|
|
|
%else
|
2017-11-24 17:29:49 +01:00
|
|
|
Requires(post): %insserv_prereq
|
2020-03-23 08:34:53 +01:00
|
|
|
Requires(pre): shadow
|
2014-05-08 11:51:15 +02:00
|
|
|
%endif
|
2006-12-19 00:15:14 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
Berkeley Internet Name Domain (BIND) is an implementation of the Domain
|
|
|
|
Name System (DNS) protocols and provides an openly redistributable
|
|
|
|
reference implementation of the major components of the Domain Name
|
|
|
|
System. This package includes the components to operate a DNS server.
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
Summary: BIND documentation
|
|
|
|
Group: Documentation/Other
|
2010-01-07 12:54:38 +01:00
|
|
|
BuildArch: noarch
|
2006-12-19 00:15:14 +01:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
Documentation of the Berkeley Internet Name Domain (BIND) Domain Name
|
|
|
|
System implementation of the Domain Name System (DNS) protocols. This
|
|
|
|
includes also the BIND Administrator Reference Manual (ARM).
|
|
|
|
|
|
|
|
%package utils
|
|
|
|
Summary: Utilities to query and test DNS
|
2017-11-24 17:29:49 +01:00
|
|
|
# Needed for dnssec parts
|
2006-12-19 00:15:14 +01:00
|
|
|
Group: Productivity/Networking/DNS/Utilities
|
2017-11-24 17:29:49 +01:00
|
|
|
Requires: python3-bind = %{version}
|
2012-07-26 11:55:26 +02:00
|
|
|
Provides: bind9-utils
|
|
|
|
Provides: bindutil
|
|
|
|
Provides: dns_utils
|
2017-11-24 17:29:49 +01:00
|
|
|
Obsoletes: bind9-utils < %{version}
|
|
|
|
Obsoletes: bindutil < %{version}
|
2006-12-19 00:15:14 +01:00
|
|
|
|
|
|
|
%description utils
|
2015-10-05 09:46:26 +02:00
|
|
|
This package includes the utilities "host", "dig", and "nslookup" used to
|
2006-12-19 00:15:14 +01:00
|
|
|
test and query the Domain Name System (DNS). The Berkeley Internet
|
|
|
|
Name Domain (BIND) DNS server is found in the package named bind.
|
|
|
|
|
2017-11-24 17:29:49 +01:00
|
|
|
%package -n python3-bind
|
|
|
|
Summary: A module allowing rndc commands to be sent from Python programs
|
|
|
|
Group: Development/Languages/Python
|
|
|
|
Requires: python3
|
|
|
|
Requires: python3-ply
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description -n python3-bind
|
|
|
|
This package provides a module which allows commands to be sent to rndc directly from Python programs.
|
|
|
|
|
2006-12-19 00:15:14 +01:00
|
|
|
%prep
|
2021-05-11 23:04:47 +02:00
|
|
|
%autosetup -p1 -a2
|
2016-09-27 20:38:49 +02:00
|
|
|
|
2016-02-26 08:55:47 +01:00
|
|
|
# use the year from source gzip header instead of current one to make reproducible rpms
|
2017-11-24 17:29:49 +01:00
|
|
|
year=$(perl -e 'sysread(STDIN, $h, 8); print (1900+(gmtime(unpack("l",substr($h,4))))[5])' < %{SOURCE0})
|
2016-02-26 08:55:47 +01:00
|
|
|
sed -i "s/stdout, copyright, year/stdout, copyright, \"-$year\"/" lib/dns/gen.c
|
|
|
|
|
2006-12-19 00:15:14 +01:00
|
|
|
# modify settings of some files regarding to OS version and vendor
|
|
|
|
function replaceStrings()
|
|
|
|
{
|
|
|
|
file="$1"
|
|
|
|
sed -e "s@__NSD__@/lib@g" \
|
2017-11-24 17:29:49 +01:00
|
|
|
-e "s@__BIND_PACKAGE_NAME__@%{name}@g" \
|
2006-12-19 00:15:14 +01:00
|
|
|
-e "s@__VENDOR__@%{VENDOR}@g" \
|
2017-05-20 17:34:20 +02:00
|
|
|
-e "s@__openssl__@$(pkg-config --variable=enginesdir libcrypto)@g" \
|
2014-12-08 09:18:17 +01:00
|
|
|
-i "${file}"
|
2006-12-19 00:15:14 +01:00
|
|
|
}
|
|
|
|
pushd vendor-files
|
2021-04-30 13:15:37 +02:00
|
|
|
for file in docu/README* config/{README,named.conf} sysconfig/named-named; do
|
2006-12-19 00:15:14 +01:00
|
|
|
replaceStrings ${file}
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
2021-06-28 09:10:05 +02:00
|
|
|
%if 0%{?sle_version} >= 150000 && 0%{?sle_version} <= 150300
|
|
|
|
# the Administration Reference Manual doesn't build with Leap/SLES due to an way too old Sphinx package
|
|
|
|
# that is missing sphinx.util.docutils.ReferenceRole.
|
|
|
|
# patch68 disables this extension, and here, we're removing the :gl: tags in the notes
|
|
|
|
sed -i 's|:gl:||g' doc/notes/notes*.rst
|
|
|
|
%endif
|
|
|
|
|
2006-12-19 00:15:14 +01:00
|
|
|
%build
|
2017-11-24 17:29:49 +01:00
|
|
|
autoreconf -fvi
|
2021-03-23 12:05:30 +01:00
|
|
|
export CFLAGS="%{optflags} -fPIE -DNO_VERSION_DATE"
|
|
|
|
export LDFLAGS="-pie"
|
2017-11-24 17:29:49 +01:00
|
|
|
%configure \
|
|
|
|
--with-python=%{_bindir}/python3 \
|
2006-12-19 00:15:14 +01:00
|
|
|
--includedir=%{_includedir}/bind \
|
2014-12-05 11:12:05 +01:00
|
|
|
--disable-static \
|
2006-12-19 00:15:14 +01:00
|
|
|
--with-openssl \
|
|
|
|
--enable-threads \
|
|
|
|
--with-libtool \
|
2009-07-03 16:59:08 +02:00
|
|
|
--with-libxml2 \
|
2017-09-07 14:06:06 +02:00
|
|
|
--with-libjson \
|
2020-06-19 08:28:39 +02:00
|
|
|
--with-libidn2 \
|
2014-01-24 11:15:48 +01:00
|
|
|
--with-dlz-mysql \
|
2014-12-05 11:12:05 +01:00
|
|
|
--with-dlz-ldap \
|
2016-02-12 22:48:50 +01:00
|
|
|
--with-randomdev=/dev/urandom \
|
2017-11-24 17:29:49 +01:00
|
|
|
--enable-ipv6 \
|
|
|
|
--with-pic \
|
|
|
|
--disable-openssl-version-check \
|
|
|
|
--with-tuning=large \
|
2020-08-17 08:19:40 +02:00
|
|
|
--with-geoip \
|
2017-11-24 17:29:49 +01:00
|
|
|
--with-dlopen \
|
|
|
|
--with-gssapi=yes \
|
|
|
|
--disable-isc-spnego \
|
|
|
|
--enable-fixed-rrset \
|
2018-02-27 11:12:33 +01:00
|
|
|
--enable-filter-aaaa \
|
2018-02-08 14:15:18 +01:00
|
|
|
%if %{with_systemd}
|
|
|
|
--with-systemd \
|
|
|
|
%endif
|
2017-11-24 17:29:49 +01:00
|
|
|
--enable-full-report
|
2013-08-06 15:06:41 +02:00
|
|
|
# disable rpath
|
|
|
|
sed -i '
|
|
|
|
s|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g
|
|
|
|
s|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g
|
|
|
|
' libtool
|
2021-05-09 14:35:56 +02:00
|
|
|
%make_build
|
2020-12-05 18:16:58 +01:00
|
|
|
# special make for the Administrators Reference Manual
|
|
|
|
for d in arm; do
|
|
|
|
make -C doc/${d} SPHINXBUILD=sphinx-build doc
|
|
|
|
done
|
2020-03-23 08:34:53 +01:00
|
|
|
%if %{with_systemd}
|
2021-06-28 09:07:57 +02:00
|
|
|
%sysusers_generate_pre %{SOURCE72} named named.conf
|
2020-03-23 08:34:53 +01:00
|
|
|
%endif
|
2006-12-19 00:15:14 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p \
|
2017-11-24 17:29:49 +01:00
|
|
|
%{buildroot}/%{_sysconfdir}/init.d \
|
|
|
|
%{buildroot}/%{_sysconfdir}/named.d \
|
|
|
|
%{buildroot}/%{_sysconfdir}/openldap/schema \
|
|
|
|
%{buildroot}/%{_sysconfdir}/slp.reg.d \
|
|
|
|
%{buildroot}%{_prefix}/{bin,%{_lib},sbin,include} \
|
|
|
|
%{buildroot}/%{_datadir}/bind \
|
|
|
|
%{buildroot}/%{_datadir}/susehelp/meta/Administration/System \
|
|
|
|
%{buildroot}/%{_defaultdocdir}/bind \
|
2021-01-26 09:58:48 +01:00
|
|
|
%{buildroot}%{_localstatedir}/lib/named/{etc/named.d,dev,dyn,master,slave,var/{lib,run/named}} \
|
2017-11-24 17:29:49 +01:00
|
|
|
%{buildroot}%{_mandir}/{man1,man3,man5,man8} \
|
|
|
|
%{buildroot}%{_fillupdir} \
|
|
|
|
%{buildroot}/%{_rundir} \
|
|
|
|
%{buildroot}%{_includedir}/bind/dns \
|
|
|
|
%{buildroot}%{_libexecdir}/bind
|
2019-07-22 09:51:09 +02:00
|
|
|
%if %{with_sfw2}
|
|
|
|
mkdir -p %{buildroot}/%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services
|
|
|
|
%endif
|
2017-11-24 17:29:49 +01:00
|
|
|
%make_install
|
2020-03-20 10:17:01 +01:00
|
|
|
install -m 0644 .clang-format.headers %{buildroot}/%{_defaultdocdir}/bind
|
2021-03-03 08:12:48 +01:00
|
|
|
# remove useless .h files
|
|
|
|
rm -rf %{buildroot}%{_includedir}
|
2015-06-18 14:30:16 +02:00
|
|
|
|
2007-03-29 15:06:39 +02:00
|
|
|
# remove useless .la files
|
2017-11-24 17:29:49 +01:00
|
|
|
rm -f %{buildroot}/%{_libdir}/lib*.{la,a}
|
|
|
|
mv vendor-files/config/named.conf %{buildroot}/%{_sysconfdir}
|
|
|
|
mv vendor-files/config/bind.reg %{buildroot}/%{_sysconfdir}/slp.reg.d
|
|
|
|
mv vendor-files/config/rndc-access.conf %{buildroot}/%{_sysconfdir}/named.d
|
2018-02-08 14:15:18 +01:00
|
|
|
|
|
|
|
%if %{with_systemd}
|
2019-11-10 11:52:26 +01:00
|
|
|
for file in named; do
|
2018-02-08 14:15:18 +01:00
|
|
|
install -D -m 0644 vendor-files/system/${file}.service %{buildroot}%{_unitdir}/${file}.service
|
2021-05-07 14:26:49 +02:00
|
|
|
sed -e "s,@LIBEXECDIR@,%{_libexecdir},g" -i %{buildroot}%{_unitdir}/${file}.service
|
|
|
|
install -m 0755 vendor-files/system/${file}.prep %{buildroot}%{_libexecdir}/bind/${file}.prep
|
2018-02-08 14:15:18 +01:00
|
|
|
ln -s /sbin/service %{buildroot}%{_sbindir}/rc${file}
|
|
|
|
done
|
2018-07-19 07:20:17 +02:00
|
|
|
install -D -m 0644 %{SOURCE70} %{buildroot}%{_prefix}/lib/tmpfiles.d/bind.conf
|
2021-05-09 14:35:56 +02:00
|
|
|
install -D -m 0644 %{_sourcedir}/named.root %{buildroot}%{_datadir}/factory%{_localstatedir}/lib/named/root.hint
|
2018-07-19 07:20:17 +02:00
|
|
|
install -m 0644 vendor-files/config/{127.0.0,localhost}.zone %{buildroot}%{_datadir}/factory%{_localstatedir}/lib/named
|
|
|
|
install -m 0644 bind.keys %{buildroot}%{_datadir}/factory%{_localstatedir}/lib/named/named.root.key
|
2018-02-08 14:15:18 +01:00
|
|
|
%else
|
2019-11-10 11:52:26 +01:00
|
|
|
for file in named; do
|
2018-02-08 14:15:18 +01:00
|
|
|
install -m 0754 vendor-files/init/${file} %{buildroot}%{_initddir}/${file}
|
|
|
|
ln -sf %{_initddir}/${file} %{buildroot}%{_sbindir}/rc${file}
|
|
|
|
done
|
|
|
|
%endif
|
2021-05-09 14:35:56 +02:00
|
|
|
install -m 0644 %{_sourcedir}/named.root %{buildroot}%{_localstatedir}/lib/named/root.hint
|
2017-11-24 17:29:49 +01:00
|
|
|
mv vendor-files/config/{127.0.0,localhost}.zone %{buildroot}%{_localstatedir}/lib/named
|
|
|
|
install -m 0755 vendor-files/tools/bind.genDDNSkey %{buildroot}/%{_bindir}/genDDNSkey
|
|
|
|
cp -a vendor-files/docu/BIND.desktop %{buildroot}/%{_datadir}/susehelp/meta/Administration/System
|
2021-05-09 14:35:56 +02:00
|
|
|
cp -p %{_sourcedir}/dnszone-schema.txt %{buildroot}/%{_sysconfdir}/openldap/schema/dnszone.schema
|
2017-11-24 17:29:49 +01:00
|
|
|
cp -p "%{SOURCE60}" "%{buildroot}/%{_sysconfdir}/openldap/schema/dlz.schema"
|
|
|
|
install -m 0754 vendor-files/tools/ldapdump %{buildroot}/%{_datadir}/bind
|
2021-05-09 14:35:56 +02:00
|
|
|
find %{buildroot}/%{_libdir} -type f -name '*.so*' -exec chmod 0755 {} +
|
2021-01-26 09:58:48 +01:00
|
|
|
for file in named-named; do
|
2017-11-24 17:29:49 +01:00
|
|
|
install -m 0644 vendor-files/sysconfig/${file} %{buildroot}%{_fillupdir}/sysconfig.${file}
|
2006-12-19 00:15:14 +01:00
|
|
|
done
|
2019-07-22 09:51:09 +02:00
|
|
|
%if %{with_sfw2}
|
2007-03-06 09:01:35 +01:00
|
|
|
install -m 644 vendor-files/sysconfig/SuSEFirewall.named %{buildroot}/%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/bind
|
2019-07-22 09:51:09 +02:00
|
|
|
%endif
|
2006-12-19 00:15:14 +01:00
|
|
|
# Cleanup doc
|
|
|
|
rm doc/misc/Makefile*
|
2021-05-09 14:35:56 +02:00
|
|
|
find doc/arm -type f ! -name '*.html' -delete
|
2006-12-19 00:15:14 +01:00
|
|
|
# Create doc as we want it in bind and not bind-doc
|
2021-01-26 09:58:48 +01:00
|
|
|
for file in vendor-files/docu/README*; do
|
|
|
|
basename=$( basename ${file})
|
|
|
|
cp -a ${file} %{buildroot}/%{_defaultdocdir}/bind/${basename}.%{VENDOR}
|
|
|
|
done
|
|
|
|
|
2006-12-19 00:15:14 +01:00
|
|
|
mkdir -p vendor-files/config/ISC-examples
|
|
|
|
cp -a bin/tests/*.conf* vendor-files/config/ISC-examples
|
2020-12-05 18:16:58 +01:00
|
|
|
for d in arm; do
|
|
|
|
cp -a doc/${d}/_build %{buildroot}/%{_defaultdocdir}/bind/${d}
|
|
|
|
echo "%doc %{_defaultdocdir}/bind/${d}" >>filelist-bind-doc
|
|
|
|
done
|
|
|
|
for file in CHANGES COPYRIGHT README version contrib doc/misc vendor-files/config; do
|
2006-12-19 00:15:14 +01:00
|
|
|
basename=$( basename ${file})
|
2017-11-24 17:29:49 +01:00
|
|
|
cp -a ${file} %{buildroot}/%{_defaultdocdir}/bind/${basename}
|
2006-12-19 00:15:14 +01:00
|
|
|
echo "%doc %{_defaultdocdir}/bind/${basename}" >>filelist-bind-doc
|
|
|
|
done
|
|
|
|
# ---------------------------------------------------------------------------
|
2021-01-26 09:58:48 +01:00
|
|
|
# remove useless Makefiles and Makefile skeletons
|
|
|
|
find %{buildroot}/%{_defaultdocdir}/bind \( -name Makefile -o -name Makefile.in \) -exec rm {} +
|
2017-11-24 17:29:49 +01:00
|
|
|
install -m 0644 bind.keys %{buildroot}%{_localstatedir}/lib/named/named.root.key
|
2020-03-23 08:34:53 +01:00
|
|
|
%if %{with_systemd}
|
|
|
|
mkdir -p %{buildroot}%{_sysusersdir}
|
|
|
|
install -m 644 %{SOURCE72} %{buildroot}%{_sysusersdir}/
|
|
|
|
%endif
|
2006-12-19 00:15:14 +01:00
|
|
|
|
2020-03-23 08:34:53 +01:00
|
|
|
%if %{with_systemd}
|
|
|
|
%pre -f named.pre
|
|
|
|
%service_add_pre named.service
|
|
|
|
%else
|
2021-05-09 14:35:56 +02:00
|
|
|
|
2006-12-19 00:15:14 +01:00
|
|
|
%pre
|
|
|
|
%{GROUPADD_NAMED}
|
|
|
|
%{USERADD_NAMED}
|
|
|
|
# Might be an update.
|
|
|
|
%{USERMOD_NAMED}
|
2015-05-08 20:11:21 +02:00
|
|
|
%endif
|
2006-12-19 00:15:14 +01:00
|
|
|
|
|
|
|
%preun
|
2017-03-23 17:11:03 +01:00
|
|
|
%if %{with_systemd}
|
2016-06-16 14:00:45 +02:00
|
|
|
%service_del_preun named.service
|
2017-02-21 11:39:18 +01:00
|
|
|
%else
|
|
|
|
%stop_on_removal named
|
2015-05-08 20:11:21 +02:00
|
|
|
%endif
|
2006-12-19 00:15:14 +01:00
|
|
|
|
|
|
|
%post
|
2017-03-23 17:11:03 +01:00
|
|
|
%if %{with_systemd}
|
2018-06-27 06:27:15 +02:00
|
|
|
%{fillup_only -nsa named named}
|
2017-02-21 11:39:18 +01:00
|
|
|
%service_add_post named.service
|
2018-07-19 07:20:17 +02:00
|
|
|
%tmpfiles_create bind.conf
|
2017-02-21 11:39:18 +01:00
|
|
|
%else
|
2018-06-27 06:27:15 +02:00
|
|
|
%{fillup_and_insserv -nf named}
|
2017-07-04 00:11:50 +02:00
|
|
|
if [ -x %{_bindir}/systemctl ]; then
|
|
|
|
# make sure systemctl knows about the service even though it's not a systemd service
|
|
|
|
# Without this, systemctl status named would return
|
|
|
|
# Unit named.service could not be found.
|
|
|
|
# until systemctl daemon-reload has been executed
|
|
|
|
%{_bindir}/systemctl daemon-reload || :
|
|
|
|
fi
|
2015-05-08 20:11:21 +02:00
|
|
|
%endif
|
2006-12-19 00:15:14 +01:00
|
|
|
|
|
|
|
%postun
|
2017-03-23 17:11:03 +01:00
|
|
|
%if %{with_systemd}
|
2016-06-16 14:00:45 +02:00
|
|
|
%service_del_postun named.service
|
2017-02-21 11:39:18 +01:00
|
|
|
%else
|
|
|
|
%restart_on_update named
|
|
|
|
%insserv_cleanup
|
2015-05-08 20:11:21 +02:00
|
|
|
%endif
|
2006-12-19 00:15:14 +01:00
|
|
|
|
2021-03-03 08:12:48 +01:00
|
|
|
%post -n bind-utils -p /sbin/ldconfig
|
|
|
|
%postun -n bind-utils -p /sbin/ldconfig
|
2006-12-19 00:15:14 +01:00
|
|
|
|
|
|
|
%files
|
2018-09-25 10:40:30 +02:00
|
|
|
%license LICENSE
|
2006-12-19 00:15:14 +01:00
|
|
|
%attr(0644,root,named) %config(noreplace) /%{_sysconfdir}/named.conf
|
2007-03-30 16:26:57 +02:00
|
|
|
%dir %{_sysconfdir}/slp.reg.d
|
2019-11-10 11:52:26 +01:00
|
|
|
%attr(0644,root,root) %config /%{_sysconfdir}/slp.reg.d/bind.reg
|
2018-02-08 14:15:18 +01:00
|
|
|
%if %{with_systemd}
|
|
|
|
%config %{_unitdir}/named.service
|
2018-07-19 07:20:17 +02:00
|
|
|
%{_prefix}/lib/tmpfiles.d/bind.conf
|
2020-03-23 08:34:53 +01:00
|
|
|
%{_sysusersdir}/named.conf
|
2018-07-19 07:20:17 +02:00
|
|
|
%{_datadir}/factory
|
2018-06-27 06:27:15 +02:00
|
|
|
%else
|
2006-12-19 00:15:14 +01:00
|
|
|
%config /%{_sysconfdir}/init.d/named
|
2018-02-08 14:15:18 +01:00
|
|
|
%endif
|
2019-07-22 09:51:09 +02:00
|
|
|
%if %{with_sfw2}
|
2014-12-08 09:18:17 +01:00
|
|
|
%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/bind
|
2019-07-22 09:51:09 +02:00
|
|
|
%endif
|
2017-11-24 17:29:49 +01:00
|
|
|
%{_bindir}/named-rrchecker
|
2006-12-19 00:15:14 +01:00
|
|
|
%{_sbindir}/rcnamed
|
|
|
|
%{_sbindir}/named
|
|
|
|
%{_sbindir}/named-checkconf
|
|
|
|
%{_sbindir}/named-checkzone
|
2007-03-02 09:16:36 +01:00
|
|
|
%{_sbindir}/named-compilezone
|
2019-11-10 11:52:26 +01:00
|
|
|
%dir %{_libdir}/named
|
|
|
|
%{_libdir}/named/filter-aaaa.so
|
2017-11-24 17:29:49 +01:00
|
|
|
%{_mandir}/man1/named-rrchecker.1%{ext_man}
|
|
|
|
%{_mandir}/man5/named.conf.5%{ext_man}
|
|
|
|
%{_mandir}/man8/named-checkconf.8%{ext_man}
|
|
|
|
%{_mandir}/man8/named-checkzone.8%{ext_man}
|
|
|
|
%{_mandir}/man8/named.8%{ext_man}
|
2019-11-10 11:52:26 +01:00
|
|
|
%{_mandir}/man8/filter-aaaa.8%{ext_man}
|
2006-12-19 00:15:14 +01:00
|
|
|
%dir %{_datadir}/bind
|
|
|
|
%{_datadir}/bind/ldapdump
|
2014-12-08 09:18:17 +01:00
|
|
|
%ghost %{_rundir}/named
|
2017-11-24 11:22:50 +01:00
|
|
|
%{_fillupdir}/sysconfig.named-named
|
2020-08-21 10:19:08 +02:00
|
|
|
%attr(1775,root,named) %dir %{_var}/lib/named
|
2006-12-19 00:15:14 +01:00
|
|
|
%dir %{_var}/lib/named/master
|
|
|
|
%attr(-,named,named) %dir %{_var}/lib/named/dyn
|
|
|
|
%attr(-,named,named) %dir %{_var}/lib/named/slave
|
|
|
|
%config %{_var}/lib/named/root.hint
|
|
|
|
%config %{_var}/lib/named/127.0.0.zone
|
|
|
|
%config %{_var}/lib/named/localhost.zone
|
2015-05-08 16:24:45 +02:00
|
|
|
%config %{_var}/lib/named/named.root.key
|
2015-06-18 14:30:16 +02:00
|
|
|
%dir %{_libexecdir}/bind
|
2021-04-30 13:15:37 +02:00
|
|
|
%{_libexecdir}/bind/named.prep
|
2006-12-19 00:15:14 +01:00
|
|
|
|
|
|
|
%files doc -f filelist-bind-doc
|
|
|
|
%dir %doc %{_defaultdocdir}/bind
|
|
|
|
%doc %{_datadir}/susehelp
|
|
|
|
|
|
|
|
%files utils
|
2017-11-24 17:29:49 +01:00
|
|
|
%dir %{_sysconfdir}/named.d
|
|
|
|
%config(noreplace) %{_sysconfdir}/named.d/rndc-access.conf
|
|
|
|
%config(noreplace) %{_sysconfdir}/bind.keys
|
2007-03-29 15:06:39 +02:00
|
|
|
%dir %{_sysconfdir}/openldap
|
2006-12-19 00:15:14 +01:00
|
|
|
%dir %{_sysconfdir}/openldap/schema
|
|
|
|
%attr(0444,root,root) %config %{_sysconfdir}/openldap/schema/dnszone.schema
|
2010-04-13 21:20:44 +02:00
|
|
|
%attr(0444,root,root) %config %{_sysconfdir}/openldap/schema/dlz.schema
|
2014-12-05 11:12:05 +01:00
|
|
|
%{_bindir}/delv
|
2006-12-19 00:15:14 +01:00
|
|
|
%{_bindir}/dig
|
|
|
|
%{_bindir}/host
|
2017-11-24 17:29:49 +01:00
|
|
|
%{_bindir}/mdig
|
2006-12-19 00:15:14 +01:00
|
|
|
%{_bindir}/nslookup
|
|
|
|
%{_bindir}/nsupdate
|
|
|
|
%{_bindir}/genDDNSkey
|
2017-11-24 17:29:49 +01:00
|
|
|
%{_bindir}/arpaname
|
2010-02-18 13:47:25 +01:00
|
|
|
%{_sbindir}/ddns-confgen
|
2013-06-27 11:27:34 +02:00
|
|
|
%{_sbindir}/dnssec-dsfromkey
|
2014-08-01 13:43:42 +02:00
|
|
|
%{_sbindir}/dnssec-importkey
|
2013-06-27 11:27:34 +02:00
|
|
|
%{_sbindir}/dnssec-keyfromlabel
|
|
|
|
%{_sbindir}/dnssec-keygen
|
2010-02-18 13:47:25 +01:00
|
|
|
%{_sbindir}/dnssec-revoke
|
|
|
|
%{_sbindir}/dnssec-settime
|
2013-06-27 11:27:34 +02:00
|
|
|
%{_sbindir}/dnssec-signzone
|
|
|
|
%{_sbindir}/dnssec-verify
|
2017-11-24 17:29:49 +01:00
|
|
|
%{_sbindir}/dnssec-checkds
|
|
|
|
%{_sbindir}/dnssec-coverage
|
|
|
|
%{_sbindir}/dnssec-keymgr
|
2019-11-10 11:52:26 +01:00
|
|
|
%{_sbindir}/dnssec-cds
|
|
|
|
# %%{_sbindir}/genrandom
|
|
|
|
# %%{_sbindir}/isc-hmac-fixup
|
2010-02-18 13:47:25 +01:00
|
|
|
%{_sbindir}/named-journalprint
|
|
|
|
%{_sbindir}/nsec3hash
|
2013-06-27 11:27:34 +02:00
|
|
|
%{_sbindir}/rndc
|
|
|
|
%{_sbindir}/rndc-confgen
|
2014-12-05 11:12:05 +01:00
|
|
|
%{_sbindir}/tsig-keygen
|
2021-03-03 08:12:48 +01:00
|
|
|
# Library files, formerly in their own, separate packages:
|
|
|
|
%{_libdir}/libbind9-%{version}.so
|
|
|
|
%{_libdir}/libdns-%{version}.so
|
|
|
|
%{_libdir}/libirs-%{version}.so
|
|
|
|
%{_libdir}/libisc-%{version}.so
|
|
|
|
%{_libdir}/libisccc-%{version}.so
|
|
|
|
%{_libdir}/libisccfg-%{version}.so
|
|
|
|
%{_libdir}/libns-%{version}.so
|
|
|
|
%{_libdir}/libbind9.so
|
|
|
|
%{_libdir}/libdns.so
|
|
|
|
%{_libdir}/libirs.so
|
|
|
|
%{_libdir}/libisc.so
|
|
|
|
%{_libdir}/libisccc.so
|
|
|
|
%{_libdir}/libisccfg.so
|
|
|
|
%{_libdir}/libns.so
|
2006-12-19 00:15:14 +01:00
|
|
|
%dir %doc %{_defaultdocdir}/bind
|
2021-01-26 09:58:48 +01:00
|
|
|
%{_defaultdocdir}/bind/README*.%{VENDOR}
|
2020-03-20 10:17:01 +01:00
|
|
|
%{_defaultdocdir}/bind/.clang-format.headers
|
2017-11-24 17:29:49 +01:00
|
|
|
%{_mandir}/man1/arpaname.1%{ext_man}
|
|
|
|
%{_mandir}/man1/delv.1%{ext_man}
|
|
|
|
%{_mandir}/man1/dig.1%{ext_man}
|
|
|
|
%{_mandir}/man1/host.1%{ext_man}
|
|
|
|
%{_mandir}/man1/mdig.1%{ext_man}
|
|
|
|
%{_mandir}/man1/nslookup.1%{ext_man}
|
|
|
|
%{_mandir}/man1/nsupdate.1%{ext_man}
|
2020-07-22 14:17:29 +02:00
|
|
|
# %%{_mandir}/man1/dnstap-read.1%%{ext_man}
|
2017-11-24 17:29:49 +01:00
|
|
|
%{_mandir}/man5/rndc.conf.5%{ext_man}
|
|
|
|
%{_mandir}/man8/ddns-confgen.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-dsfromkey.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-importkey.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-keyfromlabel.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-keygen.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-revoke.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-settime.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-signzone.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-verify.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-checkds.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-coverage.8%{ext_man}
|
|
|
|
%{_mandir}/man8/dnssec-keymgr.8%{ext_man}
|
2019-11-10 11:52:26 +01:00
|
|
|
%{_mandir}/man8/dnssec-cds.8%{ext_man}
|
2020-07-22 14:17:29 +02:00
|
|
|
# %%{_mandir}/man8/named-nzd2nzf.8%%{ext_man}
|
2019-11-10 11:52:26 +01:00
|
|
|
# %%{_mandir}/man8/genrandom.8%%{ext_man}
|
|
|
|
# %%{_mandir}/man8/isc-hmac-fixup.8%%{ext_man}
|
2017-11-24 17:29:49 +01:00
|
|
|
%{_mandir}/man8/named-journalprint.8%{ext_man}
|
|
|
|
%{_mandir}/man8/nsec3hash.8%{ext_man}
|
|
|
|
%{_mandir}/man8/rndc.8%{ext_man}
|
|
|
|
%{_mandir}/man8/rndc-confgen.8%{ext_man}
|
2020-07-22 14:17:29 +02:00
|
|
|
%{_mandir}/man8/named-compilezone.8%{ext_man}
|
|
|
|
%{_mandir}/man8/tsig-keygen.8%{ext_man}
|
2017-11-24 17:29:49 +01:00
|
|
|
|
|
|
|
%files -n python3-bind
|
|
|
|
%{python3_sitelib}/isc
|
|
|
|
%{python3_sitelib}/isc-*.egg-info
|
2006-12-19 00:15:14 +01:00
|
|
|
|
2007-03-02 09:16:36 +01:00
|
|
|
%changelog
|