2016-10-01 16:02:34 +05:30
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2017-03-17 22:27:14 +05:30
|
|
|
# Read debian specific configuration
|
2018-11-19 20:23:02 +05:30
|
|
|
. /etc/gitlab-common/gitlab-common.conf
|
2017-03-17 22:27:14 +05:30
|
|
|
. /etc/gitlab/gitlab-debian.conf
|
|
|
|
export DB RAILS_ENV
|
|
|
|
|
2016-10-01 16:02:34 +05:30
|
|
|
cd /usr/share/gitlab
|
|
|
|
|
|
|
|
# Check gitlab is configured correctly
|
|
|
|
printf "Check if Gitlab is configured correctly...\n"
|
2018-12-18 12:14:07 +05:30
|
|
|
runuser -u ${gitlab_user} -- sh -c "/usr/bin/bundle exec rake $@"
|