mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix help return code in unbound-control-setup script.
This commit is contained in:
parent
c7f1d2d889
commit
eed157d36e
2 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue