Skip to content

Commit 5d81b03

Browse files
committed
Remove checks for $tools_error
Signed-off-by: Richard T Bonhomme <[email protected]>
1 parent 56cfa0c commit 5d81b03

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

easyrsa3/easyrsa

-11
Original file line numberDiff line numberDiff line change
@@ -7082,36 +7082,27 @@ case "$cmd" in
70827082

70837083
case "$cmd" in
70847084
renew-ca)
7085-
[ "$tools_error" ] && user_error "$tools_error_txt"
70867085
[ -z "$alias_days" ] || \
70877086
export EASYRSA_CA_EXPIRE="$alias_days"
70887087
renew_ca_cert "$@"
70897088
;;
70907089
renew)
7091-
[ "$tools_error" ] && user_error "$tools_error_txt
7092-
7093-
A certificate can be renewed without EasyRSA Tools. Expire the certificate
7094-
using command 'expire' and sign the original request with 'sign-req'."
70957090
[ -z "$alias_days" ] || \
70967091
export EASYRSA_CERT_EXPIRE="$alias_days"
70977092
renew "$@"
70987093
;;
70997094
show-expire)
7100-
[ "$tools_error" ] && user_error "$tools_error_txt"
71017095
[ -z "$alias_days" ] || \
71027096
export EASYRSA_PRE_EXPIRY_WINDOW="$alias_days"
71037097
status expire "$@"
71047098
;;
71057099
show-revoke)
7106-
[ "$tools_error" ] && user_error "$tools_error_txt"
71077100
status revoke "$@"
71087101
;;
71097102
show-renew)
7110-
[ "$tools_error" ] && user_error "$tools_error_txt"
71117103
status renew "$@"
71127104
;;
71137105
verify-cert)
7114-
[ "$tools_error" ] && user_error "$tools_error_txt"
71157106
# Called with --batch, this will return error
71167107
# when the certificate fails verification.
71177108
# Therefore, on error, exit with error.
@@ -7124,8 +7115,6 @@ using command 'expire' and sign the original request with 'sign-req'."
71247115
gen-tls-*)
71257116
verify_working_env
71267117

7127-
[ "$tools_error" ] && user_error "$tools_error_txt"
7128-
71297118
case "$cmd" in
71307119
gen-tls-auth|gen-tls-auth-*)
71317120
tls_key_gen tls-auth "$@"

0 commit comments

Comments
 (0)