Skip to content
Snippets Groups Projects
Commit 3f24e4dc authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Add a main() function

parent b1fddb7f
No related branches found
No related tags found
No related merge requests found
...@@ -129,16 +129,15 @@ def run_generate_config(environ): ...@@ -129,16 +129,15 @@ def run_generate_config(environ):
os.execv("/usr/local/bin/python", args) os.execv("/usr/local/bin/python", args)
# Prepare the configuration def main(args, environ):
mode = sys.argv[1] if len(sys.argv) > 1 else None mode = args[1] if len(args) > 1 else None
ownership = "{}:{}".format(environ.get("UID", 991), environ.get("GID", 991)) ownership = "{}:{}".format(environ.get("UID", 991), environ.get("GID", 991))
# In generate mode, generate a configuration, missing keys, then exit # In generate mode, generate a configuration, missing keys, then exit
if mode == "generate": if mode == "generate":
run_generate_config(environ) return run_generate_config(environ)
# In normal mode, generate missing keys if any, then run synapse # In normal mode, generate missing keys if any, then run synapse
else:
if "SYNAPSE_CONFIG_PATH" in environ: if "SYNAPSE_CONFIG_PATH" in environ:
config_path = environ["SYNAPSE_CONFIG_PATH"] config_path = environ["SYNAPSE_CONFIG_PATH"]
else: else:
...@@ -158,3 +157,7 @@ else: ...@@ -158,3 +157,7 @@ else:
# Generate missing keys and start synapse # Generate missing keys and start synapse
subprocess.check_output(args + ["--generate-keys"]) subprocess.check_output(args + ["--generate-keys"])
os.execv("/sbin/su-exec", ["su-exec", ownership] + args) os.execv("/sbin/su-exec", ["su-exec", ownership] + args)
if __name__ == "__main__":
main(sys.argv, os.environ)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment