From 140098507afc6856644d819d1a9269ac5870157f Mon Sep 17 00:00:00 2001 From: "A.M. Rowsell" Date: Wed, 5 Mar 2025 17:27:01 -0500 Subject: [PATCH] Trying to detect systemd service If the systemd service didn't launch us, then simply loop forever with a 15 minute sleep in between each loop. This will make it easier to integrate into Docker, which I'm trying to make a supported configuration. I still think running via systemd unit & timer is a better method, and docker images might actually have systemd inside depending on the image base? If so, then we'll simply put a pre-made systemd service and timer unit in the Dockerfile and then automatically install them upon launch. --- discorss.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/discorss.py b/discorss.py index b0163f0..2d3afd0 100755 --- a/discorss.py +++ b/discorss.py @@ -210,4 +210,12 @@ def main(): if __name__ == "__main__": - main() + if os.environ["INVOCATION_ID"]: + main() + else: + try: + while True: + main() + time.sleep(15 * 60) + except KeyboardInterrupt: + exit(0)