projects
/
lets-encrypt-tiny.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
c263f7a
)
fix rename calls
author
Ralf Jung
<post@ralfj.de>
Mon, 14 Dec 2015 19:23:11 +0000
(20:23 +0100)
committer
Ralf Jung
<post@ralfj.de>
Mon, 14 Dec 2015 19:23:11 +0000
(20:23 +0100)
letsencrypt-tiny
patch
|
blob
|
history
diff --git
a/letsencrypt-tiny
b/letsencrypt-tiny
index f8490085c55f0a311de72e16660ddecd883d0116..4503a6ef4b29bac20aa4327afc7c325496efbd3d 100755
(executable)
--- a/
letsencrypt-tiny
+++ b/
letsencrypt-tiny
@@
-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):
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...")
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))
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))
make_backup(certfile(live))
- os.rename(
src = certfile(staging), dst =
certfile(live))
+ os.rename(
certfile(staging),
certfile(live))
return 2
def auto_renewal():
return 2
def auto_renewal():