Skip to content
Snippets Groups Projects
Commit a68a20e5 authored by Sean McGivern's avatar Sean McGivern
Browse files

Allow setting `usage_ping_enabled` in `gitlab.rb`

This setting is passed through to the Rails app, and defaults to true. Setting
it to false:

1. Disables the usage ping.
2. Prevents the usage ping from being enabled through the admin panel. It can
   only be enabled by either removing the line from `gitlab.rb` and configuring
   through the admin panel, or setting it to true in `gitlab.rb`.
parent 9f2e3c9c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -5,6 +5,7 @@ omnibus-gitlab repository.
 
9.2.0
 
- Allow setting `usage_ping_enabled` in `gitlab.rb`
- Update mysql client to 5.5.55
- Add a build env variable ALTERNATIVE_SOURCES f0cab0c6
- Create reconfigure log dir explicitly (Anastas Dancha) 9654cfe3
Loading
Loading
Loading
Loading
@@ -141,6 +141,7 @@ default['gitlab']['gitlab-rails']['registry_api_url'] = nil
default['gitlab']['gitlab-rails']['registry_key_path'] = nil
default['gitlab']['gitlab-rails']['registry_path'] = nil
default['gitlab']['gitlab-rails']['registry_issuer'] = "omnibus-gitlab-issuer"
default['gitlab']['gitlab-rails']['usage_ping_enabled'] = nil
# Defaults set in libraries/gitlab_rails.rb
default['gitlab']['gitlab-rails']['repositories_storages'] = {}
 
Loading
Loading
Loading
Loading
@@ -85,6 +85,8 @@ production: &base
# The default is 'tmp/repositories' relative to the root of the Rails app.
repository_downloads_path: <%= @gitlab_repository_downloads_path %>
 
usage_ping_enabled: <%= @usage_ping_enabled %>
## Reply by email
# Allow users to comment on issues and merge requests by replying to notification emails.
# For documentation on how to set this up, see https://docs.gitlab.com/ce/administration/reply_by_email.html
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment