X-Git-Url: https://git.siccegge.de//index.cgi?p=tooling%2Fletool.git;a=blobdiff_plain;f=bin%2Fupdate;fp=bin%2Fupdate;h=bd99b1440271dae897652c1801b5d90e67e2f10c;hp=ae6f208811ae118bfdcc0cc3c05b3c1c3d8cb288;hb=31a891949a8508aa13441a90b8fbc3784da36d34;hpb=7478f8b6a2606f939f71ba39c2938da417c32c6a diff --git a/bin/update b/bin/update index ae6f208..bd99b14 100755 --- a/bin/update +++ b/bin/update @@ -10,8 +10,6 @@ import logging import sys import os -from IPython import embed - from cryptography import x509 from cryptography.hazmat.backends import default_backend @@ -55,11 +53,12 @@ def main(): for stype in SERVICETYPES: for path, name in oldcerts[stype]: - print(path, name) - - client = Client(inventory, settings); - client.get_certificate(name, stype) - + logging.info("Renewing Certificate: %s", name) + try: + client = Client(inventory, settings); + client.get_certificate(name, stype) + except Exception as e: + logging.exception("Couldnt renew") if __name__ == '__main__': main()