Adding initial files
This commit is contained in:
11
remove-dns-record.py
Executable file
11
remove-dns-record.py
Executable 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)
|
||||
|
||||
|
Reference in New Issue
Block a user