From 00f8fd8a71ad956dda0e90a42f947f1f805585dc Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Sun, 17 Sep 2023 14:34:50 +0200 Subject: inital commit --- docker/cgit/docker-init.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 docker/cgit/docker-init.py (limited to 'docker/cgit/docker-init.py') diff --git a/docker/cgit/docker-init.py b/docker/cgit/docker-init.py new file mode 100755 index 0000000..c5b47b8 --- /dev/null +++ b/docker/cgit/docker-init.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 + + +import sys, os +import re + + +with open("/etc/cgitrc", "r") as file: cgitrc = file.read() + + +for env_name, env_value in os.environ.items(): + if env_name.startswith('CGIT_'): + rc_name = env_name[5:].lower().replace('_', '-') + p = re.compile(r"({0}=)([\w\d]+)".format(rc_name)) + + if p.search(cgitrc): + cgitrc = p.sub(r"\1{0}".format(env_value), cgitrc) + else: + cgitrc += ("\n" + "{0}={1}".format(rc_name, env_value) + "\n") + + +with open("/etc/cgitrc", "w") as file: file.write(cgitrc) -- cgit v1.2.3