Skip to content

Commit

Permalink
feat(脚本): 添加buypass不支持dns申请通配符判断
Browse files Browse the repository at this point in the history
  • Loading branch information
mack-a committed Oct 12, 2022
1 parent d58848e commit 62f6755
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,7 @@ switchSSLType() {
echoContent red "\n=============================================================="
echoContent yellow "1.letsencrypt[默认]"
echoContent yellow "2.zerossl"
echoContent yellow "3.buypass"
echoContent yellow "3.buypass[不支持DNS申请]"
echoContent red "=============================================================="
read -r -p "请选择[回车]使用默认:" selectSSLType
case ${selectSSLType} in
Expand Down Expand Up @@ -1131,6 +1131,11 @@ acmeInstallSSL() {
fi
echo
if [[ -n "${customPort}" ]]; then
if [[ "${selectSSLType}" == "3" ]]; then
echoContent red " ---> buypass不支持免费通配符证书"
echo
exit
fi
dnsSSLStatus=true
else
read -r -p "是否使用DNS申请证书[y/n]:" installSSLDNStatus
Expand Down

0 comments on commit 62f6755

Please sign in to comment.