summary refs log tree commit diff
path: root/synapse/config/_base.py
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2015-08-07 16:42:27 +0100
committerPaul "LeoNerd" Evans <paul@matrix.org>2015-08-07 16:42:27 +0100
commite3c8e2c13c7c99a10d52a984c0bffa5715868c9a (patch)
tree1cd1bd7f323dc015fdd8462886412ad33547dc25 /synapse/config/_base.py
parentOnly print the pidfile path on startup if requested by a commandline flag (diff)
downloadsynapse-e3c8e2c13c7c99a10d52a984c0bffa5715868c9a.tar.xz
Add a --generate-keys option
Diffstat (limited to 'synapse/config/_base.py')
-rw-r--r--synapse/config/_base.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/synapse/config/_base.py b/synapse/config/_base.py
index d483c67c6a..c408db2b4a 100644
--- a/synapse/config/_base.py
+++ b/synapse/config/_base.py
@@ -139,6 +139,11 @@ class Config(object):
             help="Generate a config file for the server name"
         )
         config_parser.add_argument(
+            "--generate-keys",
+            action="store_true",
+            help="Generate any missing key files then exit"
+        )
+        config_parser.add_argument(
             "-H", "--server-name",
             help="The server name to generate a config file for"
         )
@@ -230,4 +235,8 @@ class Config(object):
 
         obj.invoke_all("read_arguments", args)
 
+        if config_args.generate_keys:
+            obj.invoke_all("generate_files", config)
+            sys.exit(0)
+
         return obj