Adding initial files

This commit is contained in:
2021-12-20 21:06:31 +00:00
committed by root
parent d00ee614d6
commit 3d93bfa7df
7 changed files with 113 additions and 0 deletions

11
remove-dns-record.py Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env python3
import os
from DnsRecordDeleter import delete_dns_record
SUBDOMAIN = '_acme-challenge'
domain = os.environ['CERTBOT_DOMAIN']
delete_dns_record(SUBDOMAIN, domain)