Commit 6f037b9f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'argument_error_in_gitlab_check' of /home/git/repositories/gitlab/gitlabhq

parents ed72e949 cb6d7e51
......@@ -479,11 +479,13 @@ namespace :gitlab do
return
end
if File.stat(repo_base_path).uid == uid_for(gitlab_shell_ssh_user) &&
File.stat(repo_base_path).gid == gid_for(gitlab_shell_owner_group)
uid = uid_for(gitlab_shell_ssh_user)
gid = gid_for(gitlab_shell_owner_group)
if File.stat(repo_base_path).uid == uid && File.stat(repo_base_path).gid == gid
puts "yes".green
else
puts "no".red
puts " User id for #{gitlab_shell_ssh_user}: #{uid}. Groupd id for #{gitlab_shell_owner_group}: #{gid}".blue
try_fixing_it(
"sudo chown -R #{gitlab_shell_ssh_user}:#{gitlab_shell_owner_group} #{repo_base_path}"
)
......
......@@ -80,7 +80,11 @@ namespace :gitlab do
end
def gid_for(group_name)
Etc.getgrnam(group_name).gid
begin
Etc.getgrnam(group_name).gid
rescue ArgumentError # no group
"group #{group_name} doesn't exist"
end
end
def warn_user_is_not_gitlab
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment