init checkPahekoLdap.py

This commit is contained in:
2025-10-14 18:30:46 +02:00
parent a93d19423f
commit d7b8d61da5
3 changed files with 62 additions and 4 deletions

View File

@@ -6,10 +6,12 @@ def getDockersConfig(key):
for line in config:
if line.startswith(f"{key}="):
return line.split("=", 1)[1].split("#")[0].strip()
raise Exception(f"getDockersConfig(): No config for {key}")
def getSecretConfig(serv, key):
with open(SECRETS.format(serv=serv)) as config:
for line in config:
if line.startswith(f"{key}="):
return line.split("=", 2)[1].split("#")[0].strip()
raise Exception(f"getSecretConfig(): No config for {serv}/{key}")