Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2013-10-22 12:22:45 +0400
committerJacob Vosmaer <contact@jacobvosmaer.nl>2013-10-22 12:27:23 +0400
commit3bef6b46f83f82be7ceea0d3bee7e35507554e09 (patch)
tree37535084b09d8ff51f84cfa681ddb1355bf94b11 /script
parent5717304098ae81285a5a616fb066e9ae7ea88f54 (diff)
Use `2>&1` because Bash 3 does not support `&>>`
Diffstat (limited to 'script')
-rwxr-xr-xscript/background_jobs4
1 files changed, 2 insertions, 2 deletions
diff --git a/script/background_jobs b/script/background_jobs
index e0beb3df815..623e26a2831 100755
--- a/script/background_jobs
+++ b/script/background_jobs
@@ -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