0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-18 10:38:21 +02:00

Default PID file should be 'homeserver.pid' to match the other 'homeserver.*' naming convention

This commit is contained in:
Paul "LeoNerd" Evans 2014-09-03 17:32:31 +01:00
parent 5dd1a738f8
commit 4081413876

View file

@ -58,7 +58,7 @@ class ServerConfig(Config):
help="Local interface to listen on")
server_group.add_argument("-D", "--daemonize", action='store_true',
help="Daemonize the home server")
server_group.add_argument('--pid-file', default="hs.pid",
server_group.add_argument('--pid-file', default="homeserver.pid",
help="When running as a daemon, the file to"
" store the pid in")
server_group.add_argument("--manhole", metavar="PORT", dest="manhole",