Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJazz <jazzzz@gmail.com>2016-02-24 00:30:45 +0300
committerLudovic Perrine <lpe@f4-group.com>2016-05-19 17:53:47 +0300
commit8eb1748ab20efba43f28428799f98dc6807705a3 (patch)
treede1cdee87f67c8f4728d3d279ae459d0d632ff78 /lib
parent3656b5db071d13b23803a9cbf9347da34b19fb24 (diff)
Fixed advice on invalid permissions on upload path
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/gitlab/check.rake2
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"