15 lines
416 B
Bash
15 lines
416 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
unset REQUESTS_CA_BUNDLE
|
||
|
|
||
|
API_KEY_FILE=/Users/lizzy/git/simponic/dns-updater/apikey.secret
|
||
|
ENDPOINT=https://hatecomputers.club
|
||
|
PUBLIC_SUFFIXES=.hatecomputers.club
|
||
|
|
||
|
./main.py --certbot \
|
||
|
--public-suffixes=$PUBLIC_SUFFIXES \
|
||
|
--certbot-domain=$CERTBOT_DOMAIN \
|
||
|
--certbot-validation=$CERTBOT_VALIDATION \
|
||
|
--endpoint=$ENDPOINT \
|
||
|
--api-key-file=$API_KEY_FILE
|