add sealed vault support (quick & dirty)
This commit is contained in:
parent
e670b2fb9b
commit
2c64814975
|
@ -154,11 +154,15 @@ if __name__ == "__main__":
|
||||||
|
|
||||||
if int(time.time()) > key['valid before']:
|
if int(time.time()) > key['valid before']:
|
||||||
print("Need to renew %s" % sys.argv[1])
|
print("Need to renew %s" % sys.argv[1])
|
||||||
vaultRenewKey(sys.argv[1],vault)
|
try:
|
||||||
else:
|
vaultRenewKey(sys.argv[1],vault)
|
||||||
print("Nothing to do")
|
except hvac.exceptions.VaultDown:
|
||||||
|
print("Vault is sealed, unable to renew SSH Key")
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
vaultRenewKey(sys.argv[1],vault)
|
try:
|
||||||
|
vaultRenewKey(sys.argv[1],vault)
|
||||||
|
except hvac.exceptions.VaultDown:
|
||||||
|
print("Vault is sealed, unable to renew SSH Key")
|
||||||
else:
|
else:
|
||||||
print("Usage: %s [path to certificate]" % sys.argv[0])
|
print("Usage: %s [path to certificate]" % sys.argv[0])
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
Loading…
Reference in a new issue