Do not use single quotes when inserting external_url.

This commit is contained in:
Marin Jankovski 2014-10-28 12:18:15 +01:00
parent 32a8e083d4
commit 59f5976562
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ fi
# Create a minimal gitlab.rb template if /etc/gitlab/gitlab.rb does not exist.
if ! [ -e /etc/gitlab/gitlab.rb ] ; then
mkdir -p /etc/gitlab
cat > /etc/gitlab/gitlab.rb <<'EOF'
cat > /etc/gitlab/gitlab.rb <<EOF
# Check and change the external_url to the address your users will type in their browser
external_url '${external_url}'
EOF