diff options
| author | Adam Tkac <atkac@fedoraproject.org> | 2007-05-24 14:31:50 +0000 |
|---|---|---|
| committer | Adam Tkac <atkac@fedoraproject.org> | 2007-05-24 14:31:50 +0000 |
| commit | b82deb2ea785a00c5508d480608eecab15bbb298 (patch) | |
| tree | b06a1c2c14f46198f34f4c33b4a4fe10a3a6d45c /bind-chroot-admin.in | |
| parent | af78c8d4b9f7feb322a228bbfb8fb983e57a651d (diff) | |
| download | bind-b82deb2ea785a00c5508d480608eecab15bbb298.tar.gz bind-b82deb2ea785a00c5508d480608eecab15bbb298.tar.xz bind-b82deb2ea785a00c5508d480608eecab15bbb298.zip | |
- start using deprecated ldap API because new-api patch didn't work (lackbind-9_4_1-4_fc8
of documentation)
- fix minor bug in bind-chroot-admin script (#241103)
Diffstat (limited to 'bind-chroot-admin.in')
| -rw-r--r-- | bind-chroot-admin.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bind-chroot-admin.in b/bind-chroot-admin.in index be6064d..3ff3e58 100644 --- a/bind-chroot-admin.in +++ b/bind-chroot-admin.in @@ -221,7 +221,7 @@ function master_zone_writes_enabled() fi; . /etc/sysconfig/named - if [ "$ENABLE_ZONE_WRITE" = [yY1]* ]; then + if `echo "$ENABLE_ZONE_WRITE" | grep -q '[yY1].*'`; then return 0; fi; |
