2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Add -q (quiet) option to dnssec-signzone and dnssec-verify tool

With the move of the normal output to stdout, we need a way how to silence the
extra output, so the signed file name can be captured in a simple way.  This
commit adds `-q` command line option that will silence all the normal output
that get's printed from both tools.
This commit is contained in:
Ondřej Surý
2019-07-22 10:33:17 -04:00
parent 94354d4655
commit fd00bac736
5 changed files with 29 additions and 14 deletions

View File

@@ -57,7 +57,8 @@
#include "dnssectool.h"
int verbose;
int verbose = 0;
bool quiet = false;
uint8_t dtype[8];
static fatalcallback_t *fatalcallback = NULL;