summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Stransky <stransky@fedoraproject.org>2006-10-10 09:21:35 +0000
committerMartin Stransky <stransky@fedoraproject.org>2006-10-10 09:21:35 +0000
commitb5e5b3618f389bfcb56be7666dec189a448a9c36 (patch)
tree04e3bc2806cfc0270289ed4c8216d1d9794e55fb
parent184e136c42f204d78975ab94af27f65626e481d4 (diff)
added fix for #210096: warning: group named does not exist - using root
-rw-r--r--bind.spec10
1 files changed, 7 insertions, 3 deletions
diff --git a/bind.spec b/bind.spec
index 7b9b426..20c3200 100644
--- a/bind.spec
+++ b/bind.spec
@@ -18,7 +18,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
Name: bind
License: BSD-like
Version: 9.3.3
-Release: 3%{?dist}
+Release: 4%{?dist}
Epoch: 30
Url: http://www.isc.org/products/BIND/
Buildroot: %{_tmppath}/%{name}-root
@@ -209,7 +209,8 @@ necessary to develop software that uses it.
%package sdb
Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) server with database backends.
Group: System Environment/Daemons
-Requires: bind-libs = %{epoch}:%{version}-%{release}, bind-utils = %{epoch}:%{version}-%{release}, glibc >= 2.2
+PreReq: bind = %{epoch}:%{version}-%{release}
+Requires: bind-utils = %{epoch}:%{version}-%{release}
Requires(post): bash, coreutils, sed, grep, mktemp
Requires(preun): bash, coreutils, sed, grep
%if %{selinux}
@@ -454,7 +455,7 @@ for f in my.internal.zone.db slaves/my.slave.internal.zone.db slaves/my.ddns.int
echo '@ in soa localhost. root 1 3H 15M 1W 1D
ns localhost.' > sample/var/named/$f;
done
-/usr/bin/tail -n '+'`/bin/egrep -n '\\$Id: bind.spec,v 1.133 2006/10/05 13:06:25 stransky Exp $/+1/' | bc` bin/rndc/rndc.conf | sed '/Sample rndc configuration file./{p;i\
+/usr/bin/tail -n '+'`/bin/egrep -n '\\$Id: bind.spec,v 1.134 2006/10/10 09:21:35 stransky Exp $/+1/' | bc` bin/rndc/rndc.conf | sed '/Sample rndc configuration file./{p;i\
*\
* NOTE: you only need to create this file if it is to\
* differ from the following default contents:
@@ -782,6 +783,9 @@ rm -rf ${RPM_BUILD_ROOT}
:;
%changelog
+* Tue Oct 10 2006 Martin Stransky <stransky@redhat.com> - 30:9.3.3-4
+- added fix for #210096: warning: group named does not exist - using root
+
* Thu Oct 5 2006 Martin Stransky <stransky@redhat.com> - 30:9.3.3-3
- added fix from #209400 - Bind Init Script does not create
the PID file always, created by Jeff Means