in files/gitlab-ctl-commands/upgrade.rb [264:294]
def print_welcome_and_exit
print_tanuki_art
print_gitlab_art
external_url = ENV['EXTERNAL_URL']
puts "Thank you for installing GitLab!"
if external_url == "http://gitlab.example.com"
puts "GitLab was unable to detect a valid hostname for your instance."
puts "Please configure a URL for your GitLab instance by setting `external_url`"
puts "configuration in /etc/gitlab/gitlab.rb file."
puts "Then, you can start your GitLab instance by running the following command:"
puts " sudo gitlab-ctl reconfigure"
else
puts "GitLab should be available at #{ENV['EXTERNAL_URL']}"
end
puts "\nFor a comprehensive list of configuration options please see the Omnibus GitLab readme"
puts "https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md\n\n"
pg_upgrade_check
release_version = survey_release_version
if release_version
puts "Help us improve the installation experience, let us know how we did with a 1 minute survey:"
puts "https://gitlab.fra1.qualtrics.com/jfe/form/SV_6kVqZANThUQ1bZb?installation=omnibus&release=#{release_version}\n\n"
end
stale_files_check
Kernel.exit 0
end