Hook renew command
This commit is contained in:
parent
f8bc197408
commit
b3750d59ac
@ -34,6 +34,7 @@ Here is the list of commands available with a short syntax reminder. Use the
|
|||||||
build-client-full <filename_base> [ cmd-opts ]
|
build-client-full <filename_base> [ cmd-opts ]
|
||||||
build-server-full <filename_base> [ cmd-opts ]
|
build-server-full <filename_base> [ cmd-opts ]
|
||||||
revoke <filename_base> [cmd-opts]
|
revoke <filename_base> [cmd-opts]
|
||||||
|
renew <filename_base> [cmd-opts]
|
||||||
build-serverClient-full <filename_base> [ cmd-opts ]
|
build-serverClient-full <filename_base> [ cmd-opts ]
|
||||||
gen-crl
|
gen-crl
|
||||||
update-db
|
update-db
|
||||||
@ -110,6 +111,11 @@ cmd_help() {
|
|||||||
superseded
|
superseded
|
||||||
cessationOfOperation
|
cessationOfOperation
|
||||||
certificateHold";;
|
certificateHold";;
|
||||||
|
renew) text="
|
||||||
|
renew <filename_base> [ cmd-opts ]
|
||||||
|
Renew a certificate specified by the filename_base"
|
||||||
|
opts="
|
||||||
|
nopass - do not encrypt the private key (default is encrypted)" ;;
|
||||||
gen-crl) text="
|
gen-crl) text="
|
||||||
gen-crl
|
gen-crl
|
||||||
Generate a CRL" ;;
|
Generate a CRL" ;;
|
||||||
@ -1651,6 +1657,9 @@ case "$cmd" in
|
|||||||
revoke)
|
revoke)
|
||||||
revoke "$@"
|
revoke "$@"
|
||||||
;;
|
;;
|
||||||
|
renew)
|
||||||
|
renew "$@"
|
||||||
|
;;
|
||||||
import-req)
|
import-req)
|
||||||
import_req "$@"
|
import_req "$@"
|
||||||
;;
|
;;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user