forked from ricwein/gitlab-uberspace-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidekiq
37 lines (34 loc) · 1.42 KB
/
sidekiq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
########################################################################
#
# 2014-06-27
# Gabriel Bretschner
#
########################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
########################################################################
#
# Uberspace Service-Script to start sidekiq with daemontools
#
########################################################################
export RAILS_ENV="production"
export GITLAB_PATH="$HOME/gitlab"
cd $GITLAB_PATH/
app_root=$GITLAB_PATH
sidekiq_pidfile="$app_root/tmp/pids/sidekiq.pid"
sidekiq_logfile="$app_root/log/sidekiq.log"
exec bundle exec sidekiq -q post_receive -q mailer -q system_hook -q project_web_hook -q archive_repo -q gitlab_shell -q common -q default -e $RAILS_ENV -P $sidekiq_pidfile >> $sidekiq_logfile 2>&1