Commit 6d759c9b authored by Julien Muchembled's avatar Julien Muchembled

re6st-conf: add warning about the importance of the private key

parent 031c5e34
...@@ -145,9 +145,12 @@ def main(): ...@@ -145,9 +145,12 @@ def main():
cert = loadCert(cert) cert = loadCert(cert)
not_after = utils.notAfter(cert) not_after = utils.notAfter(cert)
print("Setup complete. Certificate is valid until %s UTC" print("Setup complete. Certificate is valid until %s UTC"
" and will be automatically renewed after %s UTC" % ( " and will be automatically renewed after %s UTC.\n"
"Do not forget to backup to your private key (%s) or"
" you will lose your assigned subnet." % (
time.asctime(time.gmtime(not_after)), time.asctime(time.gmtime(not_after)),
time.asctime(time.gmtime(not_after - registry.RENEW_PERIOD)))) time.asctime(time.gmtime(not_after - registry.RENEW_PERIOD)),
key_path))
if not os.path.lexists(conf_path): if not os.path.lexists(conf_path):
create(conf_path, """\ create(conf_path, """\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment