export all varibales in gitlab-debian.conf
This commit is contained in:
parent
c693f57be9
commit
536948887f
1 changed files with 5 additions and 0 deletions
5
debian/conf/gitlab
vendored
5
debian/conf/gitlab
vendored
|
@ -10,6 +10,11 @@ RAILS_ENV="production"
|
||||||
# Read debian specific configuration
|
# Read debian specific configuration
|
||||||
. /etc/gitlab/gitlab-debian.conf
|
. /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.
|
# app_user defines the user that GitLab is run as.
|
||||||
# The default is "git".
|
# The default is "git".
|
||||||
app_user=${gitlab_user}
|
app_user=${gitlab_user}
|
||||||
|
|
Loading…
Reference in a new issue