Commit 35b45da63e683e29318afac2e41ec8b3ac8419ab

Authored by Dmitriy Zaporozhets
2 parents f197fa1f 9a7cce2f

Merge pull request #984 from abevoelker/fix-init.d-resque

Fix resque worker becoming paused on restarts
Showing 1 changed file with 0 additions and 2 deletions   Show diff stats
doc/installation.md
@@ -307,13 +307,11 @@ Create init script in /etc/init.d/gitlab: @@ -307,13 +307,11 @@ Create init script in /etc/init.d/gitlab:
307 restart) 307 restart)
308 echo -n "Restarting $DESC: " 308 echo -n "Restarting $DESC: "
309 kill -USR2 `cat $PID` 309 kill -USR2 `cat $PID`
310 - kill -USR2 `cat $RESQUE_PID`  
311 echo "$NAME." 310 echo "$NAME."
312 ;; 311 ;;
313 reload) 312 reload)
314 echo -n "Reloading $DESC configuration: " 313 echo -n "Reloading $DESC configuration: "
315 kill -HUP `cat $PID` 314 kill -HUP `cat $PID`
316 - kill -HUP `cat $RESQUE_PID`  
317 echo "$NAME." 315 echo "$NAME."
318 ;; 316 ;;
319 *) 317 *)