Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
6f037b9f
Commit
6f037b9f
authored
Sep 12, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'argument_error_in_gitlab_check' of /home/git/repositories/gitlab/gitlabhq
parents
ed72e949
cb6d7e51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
lib/tasks/gitlab/check.rake
lib/tasks/gitlab/check.rake
+4
-2
lib/tasks/gitlab/task_helpers.rake
lib/tasks/gitlab/task_helpers.rake
+5
-1
No files found.
lib/tasks/gitlab/check.rake
View file @
6f037b9f
...
...
@@ -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
}
"
)
...
...
lib/tasks/gitlab/task_helpers.rake
View file @
6f037b9f
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment