dont sleep after cleanup
1 parent 43c79e8 commit ed62a38d7028627a36fef012c125d85cb46c00be
@Pascal Gollor Pascal Gollor authored on 31 May 2018
Showing 1 changed file
View
3
■■
certbot-dns-clean.py
 
dirName = os.path.dirname(os.path.abspath(sys.argv[0]))
cmd = dirName + "/update-record.py -c " + dirName + "/conf.cfg" + " -r TXT --delete _acme-challenge." + d;
os.system(cmd)
 
# sleep to make sure the change has time to propagate over to DNS
time.sleep(25)
# end main
 
 
if __name__ == '__main__':