Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
4f11a5b2
Commit
4f11a5b2
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Plain Diff
Merge pull request #220 from matrix-org/markjh/generate_keys
Fix the --generate-keys option.
parents
7b49236b
7bbaab94
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/config/_base.py
+36
-45
36 additions, 45 deletions
synapse/config/_base.py
with
36 additions
and
45 deletions
synapse/config/_base.py
+
36
−
45
View file @
4f11a5b2
...
...
@@ -149,6 +149,8 @@ class Config(object):
)
config_args
,
remaining_args
=
config_parser
.
parse_known_args
(
argv
)
generate_keys
=
config_args
.
generate_keys
if
config_args
.
generate_config
:
if
not
config_args
.
config_path
:
config_parser
.
error
(
...
...
@@ -156,51 +158,40 @@ class Config(object):
"
generated using
\"
--generate-config -H SERVER_NAME
"
"
-c CONFIG-FILE
\"
"
)
config_dir_path
=
os
.
path
.
dirname
(
config_args
.
config_path
[
0
])
config_dir_path
=
os
.
path
.
abspath
(
config_dir_path
)
server_name
=
config_args
.
server_name
if
not
server_name
:
print
"
Must specify a server_name to a generate config for.
"
sys
.
exit
(
1
)
(
config_path
,)
=
config_args
.
config_path
if
not
os
.
path
.
exists
(
config_dir_path
):
os
.
makedirs
(
config_dir_path
)
if
os
.
path
.
exists
(
config_path
):
print
"
Config file %r already exists
"
%
(
config_path
,)
yaml_config
=
cls
.
read_config_file
(
config_path
)
yaml_name
=
yaml_config
[
"
server_name
"
]
if
server_name
!=
yaml_name
:
print
(
"
Config file %r has a different server_name:
"
"
%r != %r
"
%
(
config_path
,
server_name
,
yaml_name
)
)
if
not
os
.
path
.
exists
(
config_path
):
config_dir_path
=
os
.
path
.
dirname
(
config_path
)
config_dir_path
=
os
.
path
.
abspath
(
config_dir_path
)
server_name
=
config_args
.
server_name
if
not
server_name
:
print
"
Must specify a server_name to a generate config for.
"
sys
.
exit
(
1
)
config_bytes
,
config
=
obj
.
generate_config
(
config_dir_path
,
server_name
if
not
os
.
path
.
exists
(
config_dir_path
):
os
.
makedirs
(
config_dir_path
)
with
open
(
config_path
,
"
wb
"
)
as
config_file
:
config_bytes
,
config
=
obj
.
generate_config
(
config_dir_path
,
server_name
)
obj
.
invoke_all
(
"
generate_files
"
,
config
)
config_file
.
write
(
config_bytes
)
print
(
"
A config file has been generated in %r for server name
"
"
%r with corresponding SSL keys and self-signed
"
"
certificates. Please review this file and customise it
"
"
to your needs.
"
)
%
(
config_path
,
server_name
)
print
(
"
If this server name is incorrect, you will need to
"
"
regenerate the SSL certificates
"
)
config
.
update
(
yaml_config
)
print
"
Generating any missing keys for %r
"
%
(
server_name
,)
obj
.
invoke_all
(
"
generate_files
"
,
config
)
sys
.
exit
(
0
)
with
open
(
config_path
,
"
wb
"
)
as
config_file
:
config_bytes
,
config
=
obj
.
generate_config
(
config_dir_path
,
server_name
)
obj
.
invoke_all
(
"
generate_files
"
,
config
)
config_file
.
write
(
config_bytes
)
else
:
print
(
"
A config file has been generated in %s for server name
"
"
'
%s
'
with corresponding SSL keys and self-signed
"
"
certificates. Please review this file and customise it to
"
"
your needs.
"
)
%
(
config_path
,
server_name
)
print
(
"
If this server name is incorrect, you will need to regenerate
"
"
the SSL certificates
"
)
sys
.
exit
(
0
)
"
Config file %r already exists. Generating any missing key
"
"
files.
"
)
%
(
config_path
,)
generate_keys
=
True
parser
=
argparse
.
ArgumentParser
(
parents
=
[
config_parser
],
...
...
@@ -218,7 +209,7 @@ class Config(object):
"
-c CONFIG-FILE
\"
"
)
config_dir_path
=
os
.
path
.
dirname
(
config_args
.
config_path
[
0
])
config_dir_path
=
os
.
path
.
dirname
(
config_args
.
config_path
[
-
1
])
config_dir_path
=
os
.
path
.
abspath
(
config_dir_path
)
specified_config
=
{}
...
...
@@ -231,12 +222,12 @@ class Config(object):
config
.
pop
(
"
log_config
"
)
config
.
update
(
specified_config
)
if
generate_keys
:
obj
.
invoke_all
(
"
generate_files
"
,
config
)
sys
.
exit
(
0
)
obj
.
invoke_all
(
"
read_config
"
,
config
)
obj
.
invoke_all
(
"
read_arguments
"
,
args
)
if
config_args
.
generate_keys
:
obj
.
invoke_all
(
"
generate_files
"
,
config
)
sys
.
exit
(
0
)
return
obj
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment