fix warning 'nohup: redirecting stderr to stdout'

related issue https://github.com/gitlabhq/gitlabhq/issues/2045
This commit is contained in:
anton troyanov 2012-12-26 16:36:40 +04:00
parent 70ebcf250a
commit a934bafd9f
1 changed files with 1 additions and 1 deletions

View File

@ -1,2 +1,2 @@
mkdir -p tmp/pids
nohup bundle exec rake environment resque:work QUEUE=post_receive,mailer,system_hook RAILS_ENV=production PIDFILE=tmp/pids/resque_worker.pid > ./log/resque.log &
nohup bundle exec rake environment resque:work QUEUE=post_receive,mailer,system_hook RAILS_ENV=production PIDFILE=tmp/pids/resque_worker.pid > ./log/resque.stdout.log 2>./log/resque.stderr.log &