Commit 56ddf93f8eae54e545260d40abe5f8bef1979fe1

Authored by Dmitriy Zaporozhets
2 parents 962ccce3 3db67ff0

Merge pull request #4101 from bassrock/master

Update suggestion for Check.rake
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
lib/tasks/gitlab/check.rake
... ... @@ -219,7 +219,7 @@ namespace :gitlab do
219 219 puts "no".red
220 220 try_fixing_it(
221 221 "sudo chown -R gitlab #{log_path}",
222   - "sudo chmod -R rwX #{log_path}"
  222 + "sudo chmod -R u+rwX #{log_path}"
223 223 )
224 224 for_more_information(
225 225 see_installation_guide_section "GitLab"
... ... @@ -239,7 +239,7 @@ namespace :gitlab do
239 239 puts "no".red
240 240 try_fixing_it(
241 241 "sudo chown -R gitlab #{tmp_path}",
242   - "sudo chmod -R rwX #{tmp_path}"
  242 + "sudo chmod -R u+rwX #{tmp_path}"
243 243 )
244 244 for_more_information(
245 245 see_installation_guide_section "GitLab"
... ...