Will I ever test my code before committing? No.

This commit is contained in:
tim 2024-11-07 22:57:39 +00:00
parent 333db37b71
commit 6f8cb905b0
1 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
acmesh="/root/.acme.sh/acme.sh"
if [ ! -f "$acmesh"]; then
if [ ! -f "$acmesh" ]; then
echo "acme.sh binary \"($acmesh)\" not found. Please update the path or download it from here: https://github.com/acmesh-official/acme.sh"
exit 1
fi
@ -50,17 +50,17 @@ nginx -t
echo -n "Please make sure the test passed successfully and fix any issues if it didn't [Enter]"
read
acmesh --set-default-ca --server letsencrypt
"$acmesh" --set-default-ca --server letsencrypt
echo -n '[Enter] to continue'
read
acmesh --issue -d "$domain" -w "/var/www/$domain/"
"$acmesh" --issue -d "$domain" -w "/var/www/$domain/"
echo -n '[Enter] to continue'
read
mkdir -p -v "/etc/nginx/certs/$domain"
acmesh --install-cert -d "$domain" --cert-file "/etc/nginx/certs/$domain/cert.pem" --key-file "/etc/nginx/certs/$domain/key.key" --fullchain-file "/etc/nginx/certs/$domain/fullchain.cer" --reloadcmd "service nginx force-reload"
"$acmesh" --install-cert -d "$domain" --cert-file "/etc/nginx/certs/$domain/cert.pem" --key-file "/etc/nginx/certs/$domain/key.key" --fullchain-file "/etc/nginx/certs/$domain/fullchain.cer" --reloadcmd "service nginx force-reload"
echo -n '[Enter] to continue'
read