summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Tkac <atkac@fedoraproject.org>2007-05-29 11:39:26 +0000
committerAdam Tkac <atkac@fedoraproject.org>2007-05-29 11:39:26 +0000
commit35f077d2e865dac04ac6b302ddf7cdd92a7af424 (patch)
treebc7dfb9cbb52f554d5b5fe7a01a1ba84b4aa19d3
parentb82deb2ea785a00c5508d480608eecab15bbb298 (diff)
downloadbind-35f077d2e865dac04ac6b302ddf7cdd92a7af424.tar.gz
bind-35f077d2e865dac04ac6b302ddf7cdd92a7af424.tar.xz
bind-35f077d2e865dac04ac6b302ddf7cdd92a7af424.zip
- minor compatibility change in bind-chroot-admin, line 215
-rw-r--r--bind-chroot-admin.in2
-rw-r--r--bind.spec5
2 files changed, 5 insertions, 2 deletions
diff --git a/bind-chroot-admin.in b/bind-chroot-admin.in
index 3ff3e58..4ba7bc6 100644
--- a/bind-chroot-admin.in
+++ b/bind-chroot-admin.in
@@ -212,7 +212,7 @@ function master_zone_writes_enabled()
if selinux_enabled; then
if [ -x /usr/sbin/getsebool ]; then
named_write_master_zones=`/usr/sbin/getsebool named_write_master_zones | cut -d' ' -f3`;
- if [ $named_write_master_zones == "on" ]; then
+ if [ $named_write_master_zones = "on" ]; then
return 0;
else
return 1;
diff --git a/bind.spec b/bind.spec
index 1ea927b..14158a6 100644
--- a/bind.spec
+++ b/bind.spec
@@ -17,7 +17,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
Name: bind
License: BSD-like
Version: 9.4.1
-Release: 4%{?dist}
+Release: 4.1%{?dist}
Epoch: 31
Url: http://www.isc.org/products/BIND/
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -810,6 +810,9 @@ rm -rf ${RPM_BUILD_ROOT}
%changelog
+* Tue May 29 2007 Adam Tkac <atkac redhat com> 31:9.4.1-4.1.fc8
+- very minor compatibility change in bind-chroot-admin (line 215)
+
* Wed May 24 2007 Adam Tkac <atkac redhat com> 31:9.4.1-4.fc8
- removed ldap-api patch and start using deprecated API
- fixed minor problem in bind-chroot-admin script (#241103)