projects
/
lets-encrypt-tiny.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
letsencrypt-tiny: *oops*
[lets-encrypt-tiny.git]
/
letsencrypt-tiny
diff --git
a/letsencrypt-tiny
b/letsencrypt-tiny
index 87fcd41026b1394cd05816d67af18fa910d39e39..f8490085c55f0a311de72e16660ddecd883d0116 100755
(executable)
--- a/
letsencrypt-tiny
+++ b/
letsencrypt-tiny
@@
-11,9
+11,9
@@
def readConfig(fname, defSection = 'DEFAULT'):
config.read_file(stream)
return config
config.read_file(stream)
return config
-def certfile(name
, suff = None
):
+def certfile(name):
global config
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
def keyfile(name):
global config
@@
-65,21
+65,13
@@
def acme(name, domains):
make_backup(certfile(name))
with open(certfile(name), 'wb') as f:
f.write(signed_crt)
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
if not os.path.exists(keyfile(name)):
raise Exception("No such key: {}".format(name))
domains = config['DEFAULT']['domains'].split()
def request_cert(name):
global config
if not os.path.exists(keyfile(name)):
raise Exception("No such key: {}".format(name))
domains = config['DEFAULT']['domains'].split()
- print("Obtaining certificate '{}' for domains {}".format(name, ' '.join(domains)))
+ print("Obtaining certificate '{}' for domains
:
{}".format(name, ' '.join(domains)))
acme(name, domains)
def generate_key(name):
acme(name, domains)
def generate_key(name):
@@
-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))
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():
return 2
def auto_renewal():