mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-12 21:33:23 +01:00
improve logging for generate_config_from_template
This commit is contained in:
parent
043ab6da13
commit
a1732bbff9
1 changed files with 2 additions and 1 deletions
|
@ -67,10 +67,11 @@ def generate_config_from_template(environ, ownership):
|
|||
# generate a new secret and write it to a file
|
||||
|
||||
if os.path.exists(filename):
|
||||
log("Reading %s from %s" % (secret, filename))
|
||||
with open(filename) as handle:
|
||||
value = handle.read()
|
||||
else:
|
||||
log("Generating a random secret for {}".format(name))
|
||||
log("Generating a random secret for {}".format(secret))
|
||||
value = codecs.encode(os.urandom(32), "hex").decode()
|
||||
with open(filename, "w") as handle:
|
||||
handle.write(value)
|
||||
|
|
Loading…
Reference in a new issue