From f0e5a498c2db5b65db03df455f1e18cb063c35c9 Mon Sep 17 00:00:00 2001 From: Xavier Bachelot Date: Mon, 21 Jan 2019 14:30:26 +0100 Subject: [PATCH] Hook renew command --- easyrsa3/easyrsa | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/easyrsa3/easyrsa b/easyrsa3/easyrsa index 0e9f903..48ea8b8 100755 --- a/easyrsa3/easyrsa +++ b/easyrsa3/easyrsa @@ -34,6 +34,7 @@ Here is the list of commands available with a short syntax reminder. Use the build-client-full [ cmd-opts ] build-server-full [ cmd-opts ] revoke [cmd-opts] + renew [cmd-opts] build-serverClient-full [ cmd-opts ] gen-crl update-db @@ -110,6 +111,11 @@ cmd_help() { superseded cessationOfOperation certificateHold";; + renew) text=" + renew [ 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 Generate a CRL" ;; @@ -1651,6 +1657,9 @@ case "$cmd" in revoke) revoke "$@" ;; + renew) + renew "$@" + ;; import-req) import_req "$@" ;;