sutty sends domains, no need to do conversion
https://0xacab.org/sutty/sutty/-/merge_requests/50
This commit is contained in:
parent
e82961aafc
commit
03ff181219
1 changed files with 12 additions and 19 deletions
15
certbot.sh
15
certbot.sh
|
@ -33,18 +33,12 @@ case $1 in
|
|||
"https://api.${SUTTY}/v1/sites.json" \
|
||||
2>"${headers}" \
|
||||
| jq --raw-output .[] \
|
||||
| while read name; do
|
||||
# If the site name doesn't end with a dot, it's a subdomain
|
||||
domain="$(echo "${name}" | sed "s/[^\.]$/&.${SUTTY}/")"
|
||||
domain="${domain%.}"
|
||||
|
||||
# Generate a certificate for www also
|
||||
for d in ${domain} www.${domain}; do
|
||||
| while read domain; do
|
||||
# Skip already existing domains
|
||||
test -d "/etc/letsencrypt/live/${d}" && continue
|
||||
test -d "/etc/letsencrypt/live/${domain}" && continue
|
||||
|
||||
# Ignore non local domains
|
||||
nslookup "${d}" 8.8.8.8 | grep -q "${SUTTY_ADDRESS}" || continue
|
||||
nslookup "${domain}" 8.8.8.8 | grep -q "${SUTTY_ADDRESS}" || continue
|
||||
|
||||
# Get the certificate for the domain, the webserver will need
|
||||
# access to this directory
|
||||
|
@ -52,8 +46,7 @@ case $1 in
|
|||
--webroot \
|
||||
--agree-tos \
|
||||
--webroot-path /var/lib/letsencrypt \
|
||||
-d "${d}"
|
||||
done
|
||||
-d "${domain}"
|
||||
done
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in a new issue