diff options
author | Nick Thomas <nick@gitlab.com> | 2017-11-02 12:40:18 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2017-11-02 13:31:11 +0000 |
commit | 2f0f62e58809c3f6eaee684cfd1a1d6a6bfd8b55 (patch) | |
tree | b3a5942cd5517dfb34431dda1ceff98d735d8e88 /lib/system_check | |
parent | 8e8ab2f3eb50bf367ab55f327ddfd80ba77752b4 (diff) | |
download | gitlab-ce-2f0f62e58809c3f6eaee684cfd1a1d6a6bfd8b55.tar.gz |
Remove an exception from the git user default SSH config check
Diffstat (limited to 'lib/system_check')
-rw-r--r-- | lib/system_check/app/git_user_default_ssh_config_check.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system_check/app/git_user_default_ssh_config_check.rb b/lib/system_check/app/git_user_default_ssh_config_check.rb index 9af21078403..ad41760dff2 100644 --- a/lib/system_check/app/git_user_default_ssh_config_check.rb +++ b/lib/system_check/app/git_user_default_ssh_config_check.rb @@ -11,10 +11,10 @@ module SystemCheck ].freeze set_name 'Git user has default SSH configuration?' - set_skip_reason 'skipped (GitLab read-only, or git user is not present / configured)' + set_skip_reason 'skipped (git user is not present / configured)' def skip? - Gitlab::Database.read_only? || !home_dir || !File.directory?(home_dir) + !home_dir || !File.directory?(home_dir) end def check? |