Clean up logic

This commit is contained in:
Elliot Matson 2022-07-31 15:03:12 -05:00
parent 253da228f7
commit 921a712510

View File

@ -4,12 +4,10 @@ import time
# quit if config file already exists # quit if config file already exists
if os.path.exists("/config/servers.json"): if os.path.exists("/config/servers.json"):
print("/config/servers.json already exists. Quitting...") print("/config/servers.json already exists.")
quit() else:
# open json file in docker volume
with open("/config/servers.json", "w") as f:
# open json file in docker volume
with open("/config/servers.json", "w") as f:
print("created " + f.name) print("created " + f.name)
# template json string # template json string
template_string = ( template_string = (
@ -20,11 +18,12 @@ with open("/config/servers.json", "w") as f:
data = json.loads(template_string) data = json.loads(template_string)
# fix username # fix username
data["Servers"]["1"]["Username"] = os.getenv("POSTGRES_USER") data["Servers"]["1"]["Username"] = os.getenv("POSTGRES_USER")
print("printing json to file...") print("Printing json to file...")
print(data) print(data)
# update config file # update config file
json.dump(data, f, indent=2) json.dump(data, f, indent=2)
print("Done. Sleeping...")
# Sleep until GHA Healthchecks are complete. # Sleep until GHA Healthchecks are complete.
# I'm sure there's a better way to get this to not # I'm sure there's a better way to get this to not