Skip to content

Commit

Permalink
Small fixes to the installation guide and check task
Browse files Browse the repository at this point in the history
  • Loading branch information
riyad committed Feb 1, 2013
1 parent 003c312 commit 42dd006
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/install/installation.md
Expand Up @@ -147,7 +147,7 @@ Fix the directory permissions for the repositories:
# Make sure the repositories dir is owned by git and it stays that way
sudo chmod -R ug+rwX,o-rwx /home/git/repositories/
sudo chown -R git:git /home/git/repositories/
find /home/git/repositories -type d -print0 | sudo xargs -0 chmod g+s
find /home/git/repositories -type d -print0 | sudo xargs -0 chmod g+s


## Add domains to list to the list of known hosts
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/gitlab/check.rake
Expand Up @@ -730,7 +730,7 @@ namespace :gitlab do
puts "no".red
try_fixing_it(
"sudo chmod -R ug+rwX,o-rwx #{repo_base_path}",
"sudo chmod -R u-s #{repo_base_path}",
"sudo chmod -R ug-s #{repo_base_path}",
"find #{repo_base_path} -type d -print0 | sudo xargs -0 chmod g+s"
)
for_more_information(
Expand Down

0 comments on commit 42dd006

Please sign in to comment.