remove deprecated certbot flag
This commit is contained in:
parent
8ec7d98eef
commit
3a2511d4a1
|
@ -133,10 +133,10 @@ function initiate_letsencrypt {
|
||||||
ROOT_DOMAIN=$(echo ${API_HOST} | cut -d "." -f2- )
|
ROOT_DOMAIN=$(echo ${API_HOST} | cut -d "." -f2- )
|
||||||
|
|
||||||
echo "Root domain is ${ROOTDOMAIN}"
|
echo "Root domain is ${ROOTDOMAIN}"
|
||||||
sudo certbot certonly --manual -d *.${ROOT_DOMAIN} --agree-tos --no-bootstrap --manual-public-ip-logging-ok --preferred-challenges dns -m ${EMAIL} --no-eff-email
|
sudo certbot certonly --manual -d *.${ROOT_DOMAIN} --agree-tos --no-bootstrap --preferred-challenges dns -m ${EMAIL} --no-eff-email
|
||||||
while [[ $? -ne 0 ]]
|
while [[ $? -ne 0 ]]
|
||||||
do
|
do
|
||||||
sudo certbot certonly --manual -d *.${ROOT_DOMAIN} --agree-tos --no-bootstrap --manual-public-ip-logging-ok --preferred-challenges dns -m ${EMAIL} --no-eff-email
|
sudo certbot certonly --manual -d *.${ROOT_DOMAIN} --agree-tos --no-bootstrap --preferred-challenges dns -m ${EMAIL} --no-eff-email
|
||||||
done
|
done
|
||||||
|
|
||||||
CERT_PRIV_FILE=/etc/letsencrypt/live/${ROOT_DOMAIN}/privkey.pem
|
CERT_PRIV_FILE=/etc/letsencrypt/live/${ROOT_DOMAIN}/privkey.pem
|
||||||
|
|
|
@ -157,10 +157,10 @@ sudo apt install -y certbot openssl
|
||||||
|
|
||||||
print_green 'Getting wildcard cert'
|
print_green 'Getting wildcard cert'
|
||||||
|
|
||||||
sudo certbot certonly --manual -d *.${rootdomain} --agree-tos --no-bootstrap --manual-public-ip-logging-ok --preferred-challenges dns -m ${letsemail} --no-eff-email
|
sudo certbot certonly --manual -d *.${rootdomain} --agree-tos --no-bootstrap --preferred-challenges dns -m ${letsemail} --no-eff-email
|
||||||
while [[ $? -ne 0 ]]
|
while [[ $? -ne 0 ]]
|
||||||
do
|
do
|
||||||
sudo certbot certonly --manual -d *.${rootdomain} --agree-tos --no-bootstrap --manual-public-ip-logging-ok --preferred-challenges dns -m ${letsemail} --no-eff-email
|
sudo certbot certonly --manual -d *.${rootdomain} --agree-tos --no-bootstrap --preferred-challenges dns -m ${letsemail} --no-eff-email
|
||||||
done
|
done
|
||||||
|
|
||||||
CERT_PRIV_KEY=/etc/letsencrypt/live/${rootdomain}/privkey.pem
|
CERT_PRIV_KEY=/etc/letsencrypt/live/${rootdomain}/privkey.pem
|
||||||
|
|
Loading…
Reference in New Issue