diff options
author | zeripath <art27@cantab.net> | 2020-08-15 21:15:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-15 21:15:27 +0100 |
commit | ac3cfad23dc08f24d2bb8914313162e281de7326 (patch) | |
tree | 113514441fdaeeecafadcb11346ad589e7f91c5a /contrib | |
parent | ee97e6a66a7bec9547af31c93a5eef7c19a32c54 (diff) | |
download | gitea-ac3cfad23dc08f24d2bb8914313162e281de7326.tar.gz gitea-ac3cfad23dc08f24d2bb8914313162e281de7326.zip |
Make the default PID file compile-time settable (#12485)
#12391 offered to change the default PID file from /var/run/gitea.pid however in discussion it was decided that this could break users of older systems. An alternative was offered that we could make the PID file compile/link time settable.
This PR does this, and changes the name of the setting from CustomPID to simply PIDFile. It also updates the from-source docs to show how to change the compiler settings to do this.
Closes #12391
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Florian Klink <flokli@flokli.de>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/init/debian/gitea | 2 | ||||
-rw-r--r-- | contrib/init/gentoo/gitea | 2 | ||||
-rw-r--r-- | contrib/init/suse/gitea | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/contrib/init/debian/gitea b/contrib/init/debian/gitea index b7911f106e..2246309440 100644 --- a/contrib/init/debian/gitea +++ b/contrib/init/debian/gitea @@ -18,7 +18,7 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin DESC="Gitea - Git with a cup of tea" NAME=gitea SERVICEVERBOSE=yes -PIDFILE=/var/run/$NAME.pid +PIDFILE=/run/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME WORKINGDIR=/var/lib/$NAME DAEMON=/usr/local/bin/$NAME diff --git a/contrib/init/gentoo/gitea b/contrib/init/gentoo/gitea index c40fc93f5f..e423eae54d 100644 --- a/contrib/init/gentoo/gitea +++ b/contrib/init/gentoo/gitea @@ -7,7 +7,7 @@ start_stop_daemon_args="--user ${USER} --chdir ${DIR}" command="/usr/local/bin/gitea" command_args="web -c /etc/gitea/app.ini" command_background=yes -pidfile=/var/run/gitea.pid +pidfile=/run/gitea.pid depend() { diff --git a/contrib/init/suse/gitea b/contrib/init/suse/gitea index 23178583ff..6391bedaf8 100644 --- a/contrib/init/suse/gitea +++ b/contrib/init/suse/gitea @@ -93,7 +93,7 @@ case "$1" in # Return value is slightly different for the status command: # 0 - service up and running - # 1 - service dead, but /var/run/ pid file exists + # 1 - service dead, but /run/ pid file exists # 2 - service dead, but /var/lock/ lock file exists # 3 - service not running (unused) # 4 - service status unknown :-( |