修复acme

This commit is contained in:
lsy 2024-09-23 01:23:56 +08:00
parent ecd2ef80fd
commit fca495735f

View File

@ -9,8 +9,12 @@ if [[ ! -d "${HOME}/.acme.sh" ]];then
exit
fi
echo "请输入需要申请SSL证书的域名"
while(1);do
curl https://get.acme.sh | sh -s "email=$mail"
fi
declare domain_str=''
echo "请输入需要申请SSL证书的域名"
while(1);do
read -p "不输入退出添加:" domain
if [[ -z $domain ]];then
break
@ -19,12 +23,7 @@ if [[ ! -d "${HOME}/.acme.sh" ]];then
exit
domain_str="$domain_str -d $domain"
fi
done
curl https://get.acme.sh | sh -s "email=$mail"
fi
declare domain_str=''
done
if [[ -z $domain_str ]]; then
echo "需要添加的域名不能为空"
exit