fix(install_site): missing \

This commit is contained in:
ange 2024-02-08 15:06:19 +01:00
parent ca151023d4
commit 5836240eb1
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D

View File

@ -1,12 +1,12 @@
#!/bin/bash -e #!/bin/bash -x
for URL in $BASE_URL $OTHER_URLS; do for URL in $BASE_URL $OTHER_URLS; do
certbot certonly -n certbot certonly -n \
--webroot --webroot \
-w /var/www/certbot/ -w /var/www/certbot/ \
--agree-tos --agree-tos \
--no-eff-email --no-eff-email \
-m "$EMAIL" -m "$EMAIL" \
-d "$URL" -d "$URL"
done done