Commit e57b5062 authored by Stan Hu's avatar Stan Hu

Suggest prefacing find command with sudo when base permissions are wrong

Closes #5872
parent 2459d516
...@@ -431,7 +431,7 @@ namespace :gitlab do ...@@ -431,7 +431,7 @@ namespace :gitlab do
try_fixing_it( try_fixing_it(
"sudo chmod -R ug+rwX,o-rwx #{repo_base_path}", "sudo chmod -R ug+rwX,o-rwx #{repo_base_path}",
"sudo chmod -R ug-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" "sudo find #{repo_base_path} -type d -print0 | sudo xargs -0 chmod g+s"
) )
for_more_information( for_more_information(
see_installation_guide_section "GitLab Shell" see_installation_guide_section "GitLab Shell"
......
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