mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Remove option for disabling webclient because it was confusing
This commit is contained in:
parent
a808c06a10
commit
cf890e9d43
@ -29,7 +29,7 @@ class ServerConfig(Config):
|
|||||||
self.unsecure_port = args.unsecure_port
|
self.unsecure_port = args.unsecure_port
|
||||||
self.daemonize = args.daemonize
|
self.daemonize = args.daemonize
|
||||||
self.pid_file = self.abspath(args.pid_file)
|
self.pid_file = self.abspath(args.pid_file)
|
||||||
self.webclient = args.no_webclient
|
self.webclient = True
|
||||||
self.manhole = args.manhole
|
self.manhole = args.manhole
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
@ -53,9 +53,6 @@ class ServerConfig(Config):
|
|||||||
server_group.add_argument('--pid-file', default="hs.pid",
|
server_group.add_argument('--pid-file', default="hs.pid",
|
||||||
help="When running as a daemon, the file to"
|
help="When running as a daemon, the file to"
|
||||||
" store the pid in")
|
" store the pid in")
|
||||||
server_group.add_argument("-W", "--no-webclient", default=True,
|
|
||||||
action="store_false",
|
|
||||||
help="Don't host a web client.")
|
|
||||||
server_group.add_argument("--manhole", metavar="PORT", dest="manhole",
|
server_group.add_argument("--manhole", metavar="PORT", dest="manhole",
|
||||||
type=int,
|
type=int,
|
||||||
help="Turn on the twisted telnet manhole"
|
help="Turn on the twisted telnet manhole"
|
||||||
|
Loading…
Reference in New Issue
Block a user