OSDN Git Service

Use `2>&1` because Bash 3 does not support `&>>`
authorJacob Vosmaer <contact@jacobvosmaer.nl>
Tue, 22 Oct 2013 08:22:45 +0000 (10:22 +0200)
committerJacob Vosmaer <contact@jacobvosmaer.nl>
Tue, 22 Oct 2013 08:27:23 +0000 (10:27 +0200)
script/background_jobs

index e0beb3d..623e26a 100755 (executable)
@@ -8,7 +8,7 @@ gitlab_user=$(ls -l config.ru | awk '{print $3}')
 
 function stop
 {
-  bundle exec sidekiqctl stop $sidekiq_pidfile &>> $sidekiq_logfile
+  bundle exec sidekiqctl stop $sidekiq_pidfile >> $sidekiq_logfile 2>&1
 }
 
 function killall
@@ -32,7 +32,7 @@ function start_no_deamonize
 
 function start_sidekiq
 {
-  bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default -e $RAILS_ENV -P $sidekiq_pidfile $@ &>> $sidekiq_logfile
+  bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default -e $RAILS_ENV -P $sidekiq_pidfile $@ >> $sidekiq_logfile 2>&1
 }
 
 case "$1" in