X-Git-Url: https://git.ralfj.de/lets-encrypt-tiny.git/blobdiff_plain/0c9aebd9cde72825b62e5e09a8a577d55abe1243..cb1b8278babfe6e3db570ccad06b762b29deb41c:/letsencrypt-tiny diff --git a/letsencrypt-tiny b/letsencrypt-tiny index 57a2e60..4503a6e 100755 --- a/letsencrypt-tiny +++ b/letsencrypt-tiny @@ -13,7 +13,7 @@ def readConfig(fname, defSection = 'DEFAULT'): def certfile(name): global config - return os.path.join(config['dirs']['certs'], name + ".crt" + ('' if suff is None else '+'+suff) ) + return os.path.join(config['dirs']['certs'], name + ".crt" ) def keyfile(name): global config @@ -30,7 +30,7 @@ def make_backup(fname): while True: backupfile = os.path.join(config['dirs']['backups'], backupname + "." + str(i)) if not os.path.exists(backupfile): - os.rename(src = fname, dst = backupfile) + os.rename(fname, backupfile) break elif i >= 100: print("Somehow it's really hard to find a name for the backup file...") @@ -100,9 +100,9 @@ def check_staging(): print("Unstaging '{}' to '{}'".format(staging, live)) # unstage the key! make_backup(keyfile(live)) - os.rename(src = keyfile(staging), dst = keyfile(live)) + os.rename(keyfile(staging), keyfile(live)) make_backup(certfile(live)) - os.rename(src = certfile(staging), dst = certfile(live)) + os.rename(certfile(staging), certfile(live)) return 2 def auto_renewal():