gitzone

git-based zone management tool for static and dynamic domains
git clone https://git.parazyd.org/gitzone
Log | Files | Refs

commit b2e775044d4def727650a3f599955c7459fe7e38
parent 44afacd8aea9eee8adf2cc6f9db430a584c895db
Author: tg(x) <*@tg-x.net>
Date:   Sat, 26 Feb 2011 23:49:01 +0100

named-checkzone: removed -kn param

Diffstat:
Mbin/gitzone | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/gitzone b/bin/gitzone @@ -189,9 +189,9 @@ sub check_zones { next unless $files{$file} > 0 && exists $zones->{$user}->{$dir}->{$zone}; if ($user_includes) { - print `$named_checkzone -kn -w .. '$zone' '$user/$file'`; + print `$named_checkzone -w .. '$zone' '$user/$file'`; } else { - print `$named_checkzone -kn '$zone' '$file'`; + print `$named_checkzone '$zone' '$file'`; } clean_exit 1 if $?; # error, reject push push @zones, $file;