summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-07-24 18:48:42 +0200
committerUnknwon <u@gogs.io>2015-07-24 18:48:42 +0200
commit70d44e9565e372c73d4f0f42273d4899e8e07f75 (patch)
tree769df61da1e8732270787b2e3098f7bacc1a7dcd /scripts
parentMerge pull request #1380 from vtduncan/referrer-protection (diff)
parentMerge pull request #1336 from technosophos/master (diff)
downloadforgejo-70d44e9565e372c73d4f0f42273d4899e8e07f75.tar.xz
forgejo-70d44e9565e372c73d4f0f42273d4899e8e07f75.zip
Merge branch 'master' of github.com:gogits/gogs into develop
Diffstat (limited to 'scripts')
-rw-r--r--scripts/init/debian/gogs6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/init/debian/gogs b/scripts/init/debian/gogs
index 13e8b8aa5b..b0b52286fc 100644
--- a/scripts/init/debian/gogs
+++ b/scripts/init/debian/gogs
@@ -49,10 +49,12 @@ do_start()
# 1 if daemon was already running
# 2 if daemon could not be started
sh -c "start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile \\
- --exec $DAEMON -- $DAEMON_ARGS --test > /dev/null \\
+ --test --chdir $WORKINGDIR --chuid $USER \\
+ --exec $DAEMON -- $DAEMON_ARGS > /dev/null \\
|| return 1"
sh -c "start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile \\
- --background --exec /bin/su -- - $USER -c \"cd \\\"$WORKINGDIR\\\" && $DAEMON -- $DAEMON_ARGS\" \\
+ --background --chdir $WORKINGDIR --chuid $USER \\
+ --exec $DAEMON -- $DAEMON_ARGS \\
|| return 2"
}