Commit 988217ef8ada9eb83f282569f2304b37e4c4f4bc
Exists in
master
and in
9 other branches
Merge branch 'sque/omnibus-gitlab-signin_enabled'
Showing
3 changed files
with
3 additions
and
1 deletions
Show diff stats
CHANGELOG
... | ... | @@ -6,6 +6,7 @@ |
6 | 6 | - Configure omniauth in gitlab.yml |
7 | 7 | - Expose more fields under 'extra' in gitlab.yml |
8 | 8 | - Zero-downtime Unicorn restarts |
9 | +- Support changing the 'signin_enabled' option (Konstantinos Paliouras) | |
9 | 10 | |
10 | 11 | 6.9.0 |
11 | 12 | - Make SSH port in clone URLs configurable (Julien Pivotto) | ... | ... |
files/gitlab-cookbooks/gitlab/attributes/default.rb
... | ... | @@ -60,6 +60,7 @@ default['gitlab']['gitlab-rails']['gitlab_default_can_create_group'] = nil |
60 | 60 | default['gitlab']['gitlab-rails']['gitlab_username_changing_enabled'] = nil |
61 | 61 | default['gitlab']['gitlab-rails']['gitlab_default_theme'] = nil |
62 | 62 | default['gitlab']['gitlab-rails']['gitlab_signup_enabled'] = nil |
63 | +default['gitlab']['gitlab-rails']['gitlab_signin_enabled'] = nil | |
63 | 64 | default['gitlab']['gitlab-rails']['gitlab_default_projects_features_issues'] = true |
64 | 65 | default['gitlab']['gitlab-rails']['gitlab_default_projects_features_merge_requests'] = true |
65 | 66 | default['gitlab']['gitlab-rails']['gitlab_default_projects_features_wiki'] = true | ... | ... |
files/gitlab-cookbooks/gitlab/templates/default/gitlab.yml.erb
... | ... | @@ -51,7 +51,7 @@ production: &base |
51 | 51 | signup_enabled: <%= @gitlab_signup_enabled %> |
52 | 52 | # |
53 | 53 | # default: true - If set to false, standard login form won't be shown on the sign-in page |
54 | - # signin_enabled: false | |
54 | + signin_enabled: <%= @gitlab_signin_enabled %> | |
55 | 55 | |
56 | 56 | |
57 | 57 | # Restrict setting visibility levels for non-admin users. | ... | ... |