infra/roles/webservers/templates/plugin.sh.j2

19 lines
461 B
Plaintext
Raw Normal View History

2024-04-11 17:18:35 -04:00
#!/bin/bash
unset REQUESTS_CA_BUNDLE
API_KEY_FILE=$(mktemp)
echo "{{ hatecomputers_api_key }}" >> $API_KEY_FILE
ENDPOINT=https://hatecomputers.club
PUBLIC_SUFFIXES=.hatecomputers.club
/root/hc-cert-dns/main.py --certbot \
--public-suffixes=$PUBLIC_SUFFIXES \
--certbot-domain=$CERTBOT_DOMAIN \
--certbot-validation=$CERTBOT_VALIDATION \
--endpoint=$ENDPOINT \
--api-key-file=$API_KEY_FILE
rm $API_KEY_FILE