docker-simple/simplewrapper.py

59 lines
1.4 KiB
Python
Raw Permalink Normal View History

2017-07-19 21:51:22 -07:00
#!/usr/bin/env python3
from subprocess import Popen, TimeoutExpired
import os
2017-07-19 22:13:18 -07:00
OUTPUT_DIR = "/srv/acme/certs/"
2017-07-19 21:51:22 -07:00
CONF_DIR = "/srv/acme/conf/"
WEB_ROOT = "/srv/acme/webroot/"
def main():
for name in os.listdir(CONF_DIR):
domain_dir = os.path.join(CONF_DIR, name)
with open(os.path.join(domain_dir, "email")) as f:
email = f.read().strip()
with open(os.path.join(domain_dir, "aliases")) as f:
aliases = [i.strip() for i in f.read().strip().split()]
2017-07-19 22:13:18 -07:00
output_dir = os.path.join(OUTPUT_DIR, name)
os.makedirs(output_dir, exist_ok=True)
os.chdir(output_dir)
call_le(email, aliases)
2017-07-19 21:51:22 -07:00
2017-07-19 22:13:18 -07:00
def call_le(email, domain_names):
2017-07-19 21:51:22 -07:00
assert domain_names
le_call = ["simp_le",
"--email", email,
"-f", "account_key.json",
"-f", "fullchain.pem",
2020-03-30 21:14:53 -07:00
"-f", "key.pem",
"-f", "account_reg.json"]
2017-07-19 21:51:22 -07:00
for domain in domain_names:
le_call += ["-d", domain]
le_call += ["--default_root", WEB_ROOT]
p = Popen(le_call)
try:
p.wait(30)
except TimeoutExpired:
p.kill()
if p.returncode == 0:
print("renewed {}".format(domain_names[0]))
elif p.returncode == 1:
print("no renew needed for {}".format(domain_names[0]))
elif p.returncode == 2:
print("error updating {}1".format(domain_names[0]))
2017-07-19 22:13:18 -07:00
return p.returncode
2017-07-19 21:51:22 -07:00
if __name__ == '__main__':
main()