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
69c18903
Commit
69c18903
authored
Dec 14, 2012
by
Riyad Preukschas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update gitlab:check task to use the Gitlab.config.ssh_user setting
parent
190e483f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
19 deletions
+25
-19
lib/tasks/gitlab/check.rake
lib/tasks/gitlab/check.rake
+25
-19
No files found.
lib/tasks/gitlab/check.rake
View file @
69c18903
...
@@ -290,14 +290,15 @@ namespace :gitlab do
...
@@ -290,14 +290,15 @@ namespace :gitlab do
end
end
def
check_gitlab_in_git_group
def
check_gitlab_in_git_group
print
"gitlab user is in git group? ... "
gitolite_ssh_user
=
Gitlab
.
config
.
ssh_user
print
"gitlab user is in
#{
gitolite_ssh_user
}
group? ... "
if
run_and_match
(
"id -rnG"
,
/\Wgit\W/
)
if
run_and_match
(
"id -rnG"
,
/\Wgit\W/
)
puts
"yes"
.
green
puts
"yes"
.
green
else
else
puts
"no"
.
red
puts
"no"
.
red
try_fixing_it
(
try_fixing_it
(
"sudo usermod -a -G
git
gitlab"
"sudo usermod -a -G
#{
gitolite_ssh_user
}
gitlab"
)
)
for_more_information
(
for_more_information
(
see_installation_guide_section
"System Users"
see_installation_guide_section
"System Users"
...
@@ -308,7 +309,8 @@ namespace :gitlab do
...
@@ -308,7 +309,8 @@ namespace :gitlab do
# see https://github.com/gitlabhq/gitlabhq/issues/1059
# see https://github.com/gitlabhq/gitlabhq/issues/1059
def
check_issue_1056_shell_profile_error
def
check_issue_1056_shell_profile_error
print
"Has no
\"
-e
\"
in ~git/.profile ... "
gitolite_ssh_user
=
Gitlab
.
config
.
ssh_user
print
"Has no
\"
-e
\"
in ~
#{
gitolite_ssh_user
}
/.profile ... "
profile_file
=
File
.
expand_path
(
"~
#{
Gitlab
.
config
.
ssh_user
}
/.profile"
)
profile_file
=
File
.
expand_path
(
"~
#{
Gitlab
.
config
.
ssh_user
}
/.profile"
)
...
@@ -510,22 +512,23 @@ namespace :gitlab do
...
@@ -510,22 +512,23 @@ namespace :gitlab do
end
end
def
check_dot_gitolite_user_and_group
def
check_dot_gitolite_user_and_group
print
"Config directory owned by git:git? ... "
gitolite_ssh_user
=
Gitlab
.
config
.
ssh_user
print
"Config directory owned by
#{
gitolite_ssh_user
}
:
#{
gitolite_ssh_user
}
... "
gitolite_config_path
=
File
.
expand_path
(
"~
#{
Gitlab
.
config
.
ssh_user
}
/.gitolite"
)
gitolite_config_path
=
File
.
expand_path
(
"~
#{
gitolite_
ssh_user
}
/.gitolite"
)
unless
File
.
exists?
(
gitolite_config_path
)
unless
File
.
exists?
(
gitolite_config_path
)
puts
"can't check because of previous errors"
.
magenta
puts
"can't check because of previous errors"
.
magenta
return
return
end
end
if
`stat --printf %U
#{
gitolite_config_path
}
`
==
"git"
&&
# user
if
`stat --printf %U
#{
gitolite_config_path
}
`
==
gitolite_ssh_user
&&
# user
`stat --printf %G
#{
gitolite_config_path
}
`
==
"git"
#group
`stat --printf %G
#{
gitolite_config_path
}
`
==
gitolite_ssh_user
#group
puts
"yes"
.
green
puts
"yes"
.
green
else
else
puts
"no"
.
red
puts
"no"
.
red
puts
"
#{
gitolite_config_path
}
is not owned by
git
"
.
red
puts
"
#{
gitolite_config_path
}
is not owned by
#{
gitolite_ssh_user
}
"
.
red
try_fixing_it
(
try_fixing_it
(
"sudo chown -R
git:git
#{
gitolite_config_path
}
"
"sudo chown -R
#{
gitolite_ssh_user
}
:
#{
gitolite_ssh_user
}
#{
gitolite_config_path
}
"
)
)
for_more_information
(
for_more_information
(
see_installation_guide_section
"Gitolite"
see_installation_guide_section
"Gitolite"
...
@@ -614,6 +617,7 @@ namespace :gitlab do
...
@@ -614,6 +617,7 @@ namespace :gitlab do
hook_file
=
"post-receive"
hook_file
=
"post-receive"
gitolite_hooks_path
=
File
.
join
(
Gitlab
.
config
.
git_hooks_path
,
"common"
)
gitolite_hooks_path
=
File
.
join
(
Gitlab
.
config
.
git_hooks_path
,
"common"
)
gitolite_hook_file
=
File
.
join
(
gitolite_hooks_path
,
hook_file
)
gitolite_hook_file
=
File
.
join
(
gitolite_hooks_path
,
hook_file
)
gitolite_ssh_user
=
Gitlab
.
config
.
ssh_user
gitlab_hook_file
=
Rails
.
root
.
join
.
join
(
"lib"
,
"hooks"
,
hook_file
)
gitlab_hook_file
=
Rails
.
root
.
join
.
join
(
"lib"
,
"hooks"
,
hook_file
)
...
@@ -622,7 +626,7 @@ namespace :gitlab do
...
@@ -622,7 +626,7 @@ namespace :gitlab do
else
else
puts
"no"
.
red
puts
"no"
.
red
try_fixing_it
(
try_fixing_it
(
"sudo -u
git
cp
#{
gitlab_hook_file
}
#{
gitolite_hook_file
}
"
"sudo -u
#{
gitolite_ssh_user
}
cp
#{
gitlab_hook_file
}
#{
gitolite_hook_file
}
"
)
)
for_more_information
(
for_more_information
(
see_installation_guide_section
"Setup GitLab Hooks"
see_installation_guide_section
"Setup GitLab Hooks"
...
@@ -638,6 +642,7 @@ namespace :gitlab do
...
@@ -638,6 +642,7 @@ namespace :gitlab do
gitolite_hooks_path
=
File
.
join
(
Gitlab
.
config
.
git_hooks_path
,
"common"
)
gitolite_hooks_path
=
File
.
join
(
Gitlab
.
config
.
git_hooks_path
,
"common"
)
gitolite_hook_file
=
File
.
join
(
gitolite_hooks_path
,
hook_file
)
gitolite_hook_file
=
File
.
join
(
gitolite_hooks_path
,
hook_file
)
gitolite_hook_content
=
File
.
read
(
gitolite_hook_file
)
gitolite_hook_content
=
File
.
read
(
gitolite_hook_file
)
gitolite_ssh_user
=
Gitlab
.
config
.
ssh_user
unless
File
.
exists?
(
gitolite_hook_file
)
unless
File
.
exists?
(
gitolite_hook_file
)
puts
"can't check because of previous errors"
.
magenta
puts
"can't check because of previous errors"
.
magenta
...
@@ -652,7 +657,7 @@ namespace :gitlab do
...
@@ -652,7 +657,7 @@ namespace :gitlab do
else
else
puts
"no"
.
red
puts
"no"
.
red
try_fixing_it
(
try_fixing_it
(
"sudo -u
git
cp
#{
gitlab_hook_file
}
#{
gitolite_hook_file
}
"
"sudo -u
#{
gitolite_ssh_user
}
cp
#{
gitlab_hook_file
}
#{
gitolite_hook_file
}
"
)
)
for_more_information
(
for_more_information
(
see_installation_guide_section
"Setup GitLab Hooks"
see_installation_guide_section
"Setup GitLab Hooks"
...
@@ -708,7 +713,8 @@ namespace :gitlab do
...
@@ -708,7 +713,8 @@ namespace :gitlab do
end
end
def
check_repo_base_user_and_group
def
check_repo_base_user_and_group
print
"Repo base owned by git:git? ... "
gitolite_ssh_user
=
Gitlab
.
config
.
ssh_user
print
"Repo base owned by
#{
gitolite_ssh_user
}
:
#{
gitolite_ssh_user
}
? ... "
repo_base_path
=
Gitlab
.
config
.
git_base_path
repo_base_path
=
Gitlab
.
config
.
git_base_path
unless
File
.
exists?
(
repo_base_path
)
unless
File
.
exists?
(
repo_base_path
)
...
@@ -716,14 +722,14 @@ namespace :gitlab do
...
@@ -716,14 +722,14 @@ namespace :gitlab do
return
return
end
end
if
`stat --printf %U
#{
repo_base_path
}
`
==
"git"
&&
# user
if
`stat --printf %U
#{
repo_base_path
}
`
==
gitolite_ssh_user
&&
# user
`stat --printf %G
#{
repo_base_path
}
`
==
"git"
#group
`stat --printf %G
#{
repo_base_path
}
`
==
gitolite_ssh_user
#group
puts
"yes"
.
green
puts
"yes"
.
green
else
else
puts
"no"
.
red
puts
"no"
.
red
puts
"
#{
repo_base_path
}
is not owned by
git
"
.
red
puts
"
#{
repo_base_path
}
is not owned by
#{
gitolite_ssh_user
}
"
.
red
try_fixing_it
(
try_fixing_it
(
"sudo chown -R
git:git
#{
repo_base_path
}
"
"sudo chown -R
#{
gitolite_ssh_user
}
:
#{
gitolite_ssh_user
}
#{
repo_base_path
}
"
)
)
for_more_information
(
for_more_information
(
see_installation_guide_section
"Gitolite"
see_installation_guide_section
"Gitolite"
...
@@ -773,6 +779,7 @@ namespace :gitlab do
...
@@ -773,6 +779,7 @@ namespace :gitlab do
hook_file
=
"post-receive"
hook_file
=
"post-receive"
gitolite_hooks_path
=
File
.
join
(
Gitlab
.
config
.
git_hooks_path
,
"common"
)
gitolite_hooks_path
=
File
.
join
(
Gitlab
.
config
.
git_hooks_path
,
"common"
)
gitolite_hook_file
=
File
.
join
(
gitolite_hooks_path
,
hook_file
)
gitolite_hook_file
=
File
.
join
(
gitolite_hooks_path
,
hook_file
)
gitolite_ssh_user
=
Gitlab
.
config
.
ssh_user
unless
File
.
exists?
(
gitolite_hook_file
)
unless
File
.
exists?
(
gitolite_hook_file
)
puts
"can't check because of previous errors"
.
magenta
puts
"can't check because of previous errors"
.
magenta
...
@@ -792,7 +799,7 @@ namespace :gitlab do
...
@@ -792,7 +799,7 @@ namespace :gitlab do
unless
File
.
exists?
(
project_hook_file
)
unless
File
.
exists?
(
project_hook_file
)
puts
"missing"
.
red
puts
"missing"
.
red
try_fixing_it
(
try_fixing_it
(
"sudo -u
git
ln -sf
#{
gitolite_hook_file
}
#{
project_hook_file
}
"
"sudo -u
#{
gitolite_ssh_user
}
ln -sf
#{
gitolite_hook_file
}
#{
project_hook_file
}
"
)
)
for_more_information
(
for_more_information
(
"lib/support/rewrite-hooks.sh"
"lib/support/rewrite-hooks.sh"
...
@@ -806,7 +813,7 @@ namespace :gitlab do
...
@@ -806,7 +813,7 @@ namespace :gitlab do
else
else
puts
"not a link to Gitolite's hook"
.
red
puts
"not a link to Gitolite's hook"
.
red
try_fixing_it
(
try_fixing_it
(
"sudo -u
git
ln -sf
#{
gitolite_hook_file
}
#{
project_hook_file
}
"
"sudo -u
#{
gitolite_ssh_user
}
ln -sf
#{
gitolite_hook_file
}
#{
project_hook_file
}
"
)
)
for_more_information
(
for_more_information
(
"lib/support/rewrite-hooks.sh"
"lib/support/rewrite-hooks.sh"
...
@@ -860,7 +867,6 @@ namespace :gitlab do
...
@@ -860,7 +867,6 @@ namespace :gitlab do
puts
"yes"
.
green
puts
"yes"
.
green
else
else
puts
"no"
.
red
puts
"no"
.
red
puts
"
#{
repo_base_path
}
is not owned by git"
.
red
try_fixing_it
(
try_fixing_it
(
"sudo service gitlab restart"
,
"sudo service gitlab restart"
,
"or"
,
"or"
,
...
...
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