mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
Don't create a default pid file (#637)
This commit is contained in:
parent
27fcf8d30a
commit
4a1f36c3cc
@ -62,7 +62,7 @@ and it takes care of all the other things for you`,
|
|||||||
},
|
},
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "pid, P",
|
Name: "pid, P",
|
||||||
Value: "custom/run/app.pid",
|
Value: "/var/run/gitea.pid",
|
||||||
Usage: "Custom pid file path",
|
Usage: "Custom pid file path",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -515,12 +515,10 @@ please consider changing to GITEA_CUSTOM`)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(CustomPID) == 0 {
|
if len(CustomPID) > 0 {
|
||||||
CustomPID = CustomPath + "/run/app.pid"
|
createPIDFile(CustomPID)
|
||||||
}
|
}
|
||||||
|
|
||||||
createPIDFile(CustomPID)
|
|
||||||
|
|
||||||
if len(CustomConf) == 0 {
|
if len(CustomConf) == 0 {
|
||||||
CustomConf = CustomPath + "/conf/app.ini"
|
CustomConf = CustomPath + "/conf/app.ini"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user