diff options
author | Carlos Gutierrez <carlosg@sca.mx> | 2015-03-17 20:30:25 -0700 |
---|---|---|
committer | Carlos Gutierrez <carlosg@sca.mx> | 2015-03-17 20:30:25 -0700 |
commit | e7f4d234125f40b02c2f3dafee31869ffee03074 (patch) | |
tree | de1877f22fd01985b354b5ba9828000ecad6e8b6 /scripts | |
parent | 33894591a6d391674e938d018801d88d0011f0b7 (diff) | |
download | gitea-e7f4d234125f40b02c2f3dafee31869ffee03074.tar.gz gitea-e7f4d234125f40b02c2f3dafee31869ffee03074.zip |
Remove use of PID and fix stderr redirection
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/init/centos/gogs | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/scripts/init/centos/gogs b/scripts/init/centos/gogs index 90469498be..1a92ff2070 100644 --- a/scripts/init/centos/gogs +++ b/scripts/init/centos/gogs @@ -28,7 +28,6 @@ GOGS_HOME=/home/git/gogs GOGS_PATH=${GOGS_HOME}/$NAME GOGS_USER=git SERVICENAME="Gogs Go Git Service" -PID=/var/run/$NAME.pid LOCKFILE=/var/lock/subsys/gogs LOGFILE=${GOGS_HOME}/log/gogs.log RETVAL=0 @@ -39,7 +38,7 @@ RETVAL=0 # Don't do anything if nothing is installed [ -x ${GOGS_PATH} ] || exit 0 -DAEMON_OPTS="" +DAEMON_OPTS="--check $NAME" # Set additional options, if any [ ! -z "$GOGS_USER" ] && DAEMON_OPTS="$DAEMON_OPTS --user=${GOGS_USER}" @@ -47,8 +46,7 @@ DAEMON_OPTS="" start() { cd ${GOGS_HOME} echo -n "Starting ${SERVICENAME}: " - daemon $DAEMON_OPTS --pidfile=${PID} "${GOGS_PATH} web 2>&1 > ${LOGFILE} &" - echo $! > ${PID} + daemon $DAEMON_OPTS "${GOGS_PATH} web > ${LOGFILE} 2>&1 &" RETVAL=$? echo [ $RETVAL = 0 ] && touch ${LOCKFILE} @@ -59,10 +57,10 @@ start() { stop() { cd ${GOGS_HOME} echo -n "Shutting down ${SERVICENAME}: " - killproc -p ${PID} ${NAME} + killproc ${NAME} RETVAL=$? echo - [ $RETVAL = 0 ] && rm -f ${LOCKFILE} ${PID} + [ $RETVAL = 0 ] && rm -f ${LOCKFILE} } case "$1" in @@ -74,7 +72,7 @@ case "$1" in stop ;; status) - status -p ${PID} ${NAME} + status ${NAME} ;; restart) stop |