forked from MirrorHub/synapse
Default PID file should be 'homeserver.pid' to match the other 'homeserver.*' naming convention
This commit is contained in:
parent
5dd1a738f8
commit
4081413876
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue