diff options
author | 2011-04-21 16:30:11 +0000 | |
---|---|---|
committer | 2011-04-21 16:30:11 +0000 | |
commit | ff5d998e26fedc3e91e091a2e4e404da25ec0c01 (patch) | |
tree | 2040c1a8e99016e225086771918f941e5e477e32 | |
parent | Oopsy. (diff) | |
download | wireguard-openbsd-ff5d998e26fedc3e91e091a2e4e404da25ec0c01.tar.xz wireguard-openbsd-ff5d998e26fedc3e91e091a2e4e404da25ec0c01.zip |
Make nsd-zonec less verbose in nsdc runs by removing the -v
from ZONEC_VERBOSE. This affects nsdc rebuild and nsdc patch.
Idealy nsdc patch would be silent on success so that it can be
run out of cron without getting mails all the time.
OK jakob@ sthen@
-rw-r--r-- | usr.sbin/nsd/nsdc.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/nsd/nsdc.sh.in b/usr.sbin/nsd/nsdc.sh.in index dd01812f643..e697912d551 100644 --- a/usr.sbin/nsd/nsdc.sh.in +++ b/usr.sbin/nsd/nsdc.sh.in @@ -18,7 +18,7 @@ configfile="@nsdconfigfile@" sbindir="@sbindir@" # how verbose is nsd-zonec run. Specify Nothing (empty string), -v or -vv. -ZONEC_VERBOSE=-v +ZONEC_VERBOSE= # how patch is done. Specify 1 (with use of textfiles, default) or 0 (without) PATCH_STYLE=1 |