diff options
author | Jazz <jazzzz@gmail.com> | 2016-02-23 21:30:45 +0000 |
---|---|---|
committer | Ludovic Perrine <lpe@f4-group.com> | 2016-05-19 16:53:47 +0200 |
commit | 8eb1748ab20efba43f28428799f98dc6807705a3 (patch) | |
tree | de1cdee87f67c8f4728d3d279ae459d0d632ff78 /lib/tasks | |
parent | 3656b5db071d13b23803a9cbf9347da34b19fb24 (diff) | |
download | gitlab-ce-8eb1748ab20efba43f28428799f98dc6807705a3.tar.gz |
Fixed advice on invalid permissions on upload path
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/gitlab/check.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake index effb8eb6001..fad89c73762 100644 --- a/lib/tasks/gitlab/check.rake +++ b/lib/tasks/gitlab/check.rake @@ -303,7 +303,7 @@ namespace :gitlab do else puts "no".red try_fixing_it( - "sudo find #{upload_path} -type d -not -path #{upload_path} -exec chmod 0700 {} \\;" + "sudo chmod 700 #{upload_path}" ) for_more_information( see_installation_guide_section "GitLab" |