- Fix help return code in unbound-control-setup script.

This commit is contained in:
W.C.A. Wijngaards 2020-04-16 11:47:27 +02:00
parent c7f1d2d889
commit eed157d36e
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,6 @@
16 April 2020: Wouter
- Fix help return code in unbound-control-setup script.
7 April 2020: Wouter 7 April 2020: Wouter
- Merge PR #214 from gearnode: unbound-control-setup recreate - Merge PR #214 from gearnode: unbound-control-setup recreate
certificates. With the -r option the certificates are created certificates. With the -r option the certificates are created

View file

@ -97,7 +97,7 @@ OPTIND=1
while getopts 'd:hr' arg; do while getopts 'd:hr' arg; do
case "$arg" in case "$arg" in
d) DESTDIR="$OPTARG" ;; d) DESTDIR="$OPTARG" ;;
h) usage; exit 0 ;; h) usage; exit 1 ;;
r) RECREATE=1 ;; r) RECREATE=1 ;;
?) fatal "'$arg' unknown option" ;; ?) fatal "'$arg' unknown option" ;;
esac esac