In createCSR() the call to _createcsr doesn't have the positional parameter set for "extusage" (parameter 7)
|
_createcsr "$domain" "$domainlist" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF" |
it would need something like
"" "$_createCSR_var_for_eku" appended
the CMD invocation at
|
createCSR) |
|
createCSR "$_domain" "$_altdomains" "$_ecc" |
would need to include
"$_extended_key_usage" and the
createCSR() function would need to handle that parameter
In
createCSR()the call to _createcsr doesn't have the positional parameter set for "extusage" (parameter 7)acme.sh/acme.sh
Line 1615 in 563415d
it would need something like "" "$_createCSR_var_for_eku" appended
the CMD invocation at
acme.sh/acme.sh
Lines 8256 to 8257 in 563415d
would need to include "$_extended_key_usage" and the
createCSR()function would need to handle that parameter