summaryrefslogtreecommitdiffstats
path: root/bind-chroot-admin.in
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 /bind-chroot-admin.in
parentb82deb2ea785a00c5508d480608eecab15bbb298 (diff)
downloadbind-35f077d2e865dac04ac6b302ddf7cdd92a7af424.tar.gz
bind-35f077d2e865dac04ac6b302ddf7cdd92a7af424.tar.xz
bind-35f077d2e865dac04ac6b302ddf7cdd92a7af424.zip
- minor compatibility change in bind-chroot-admin, line 215
Diffstat (limited to 'bind-chroot-admin.in')
-rw-r--r--bind-chroot-admin.in2
1 files changed, 1 insertions, 1 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;