We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 132d5e8 + ce629e8 commit 799e402Copy full SHA for 799e402
acme.sh
@@ -2873,7 +2873,7 @@ _initpath() {
2873
2874
if _isEccKey "$_ilength"; then
2875
DOMAIN_PATH="$domainhomeecc"
2876
- else
+ elif [ -z "$__SELECTED_RSA_KEY" ]; then
2877
if [ ! -d "$domainhome" ] && [ -d "$domainhomeecc" ]; then
2878
_info "The domain '$domain' seems to have a ECC cert already, lets use ecc cert."
2879
@@ -7518,6 +7518,9 @@ _process() {
7518
--keylength | -k)
7519
_keylength="$2"
7520
shift
7521
+ if [ "$_keylength" ] && ! _isEccKey "$_keylength"; then
7522
+ export __SELECTED_RSA_KEY=1
7523
+ fi
7524
;;
7525
-ak | --accountkeylength)
7526
_accountkeylength="$2"
0 commit comments