mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 13:59:39 +00:00
(fix #9) Fix start-stop-daemon call by removing --name option.
This commit is contained in:
parent
5ecc36b80e
commit
4d98159398
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ do_stop()
|
|||
{
|
||||
if [ -f "$PIDFILE" ]; then
|
||||
echo "Stopping Writelatex-Git Bridge..."
|
||||
start-stop-daemon --stop --quiet --retry=TERM/60/KILL/5 --pidfile $PIDFILE --name $NAME
|
||||
start-stop-daemon --stop --quiet --retry=TERM/60/KILL/5 --pidfile $PIDFILE
|
||||
# Many daemons don't delete their pidfiles when they exit.
|
||||
rm -f $PIDFILE
|
||||
echo "WriteLatex-Git Bridge stopped."
|
||||
|
|
Loading…
Reference in a new issue