X-Git-Url: https://git.ralfj.de/lets-encrypt-tiny.git/blobdiff_plain/652619993a6057801c4a7031ed14b36156b59462..26bdda3d0efd554a0abb5d590967323976a09817:/letsencrypt-tiny diff --git a/letsencrypt-tiny b/letsencrypt-tiny index 663faa3..57a2e60 100755 --- a/letsencrypt-tiny +++ b/letsencrypt-tiny @@ -11,7 +11,7 @@ def readConfig(fname, defSection = 'DEFAULT'): config.read_file(stream) return config -def certfile(name, suff = None): +def certfile(name): global config return os.path.join(config['dirs']['certs'], name + ".crt" + ('' if suff is None else '+'+suff) ) @@ -65,14 +65,6 @@ def acme(name, domains): make_backup(certfile(name)) with open(certfile(name), 'wb') as f: f.write(signed_crt) - # append DH params - dhfile = config['DEFAULT'].get('dh-params') - if dhfile is not None: - with open(dhfile, 'rb') as f: - dh = f.read() - with open(certfile(name, 'dh'), 'wb') as f: - f.write(signed_crt) - f.write(dh) def request_cert(name): global config @@ -111,10 +103,6 @@ def check_staging(): os.rename(src = keyfile(staging), dst = keyfile(live)) make_backup(certfile(live)) os.rename(src = certfile(staging), dst = certfile(live)) - try: - os.rename(src = certfile(staging, 'dh'), dst = certfile(live, 'dh')) - except FileNotFoundError: - pass return 2 def auto_renewal():