export all varibales in gitlab-debian.conf

This commit is contained in:
Pirate Praveen 2017-06-05 21:58:04 +05:30
parent c693f57be9
commit 536948887f

5
debian/conf/gitlab vendored
View file

@ -10,6 +10,11 @@ RAILS_ENV="production"
# Read debian specific configuration
. /etc/gitlab/gitlab-debian.conf
for i in $(grep -v '#' /etc/gitlab/gitlab-debian.conf | cut -d= -f 1)
do
export $i
done
# app_user defines the user that GitLab is run as.
# The default is "git".
app_user=${gitlab_user}