diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-29 23:24:56 -0700 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-29 23:24:56 -0700 |
commit | 56ddf93f8eae54e545260d40abe5f8bef1979fe1 (patch) | |
tree | 6401cf33bdffd38758dcad74c9370dca4c3a90b3 | |
parent | 962ccce3d1c32be308697522f52291b58b982d25 (diff) | |
parent | 3db67ff09c3b1ff2c66da238c6796942483ae6e1 (diff) | |
download | gitlab-ce-56ddf93f8eae54e545260d40abe5f8bef1979fe1.tar.gz |
Merge pull request #4101 from bassrock/master
Update suggestion for Check.rake
-rw-r--r-- | lib/tasks/gitlab/check.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake index e7cfa4424ab..59c2449444a 100644 --- a/lib/tasks/gitlab/check.rake +++ b/lib/tasks/gitlab/check.rake @@ -219,7 +219,7 @@ namespace :gitlab do puts "no".red try_fixing_it( "sudo chown -R gitlab #{log_path}", - "sudo chmod -R rwX #{log_path}" + "sudo chmod -R u+rwX #{log_path}" ) for_more_information( see_installation_guide_section "GitLab" @@ -239,7 +239,7 @@ namespace :gitlab do puts "no".red try_fixing_it( "sudo chown -R gitlab #{tmp_path}", - "sudo chmod -R rwX #{tmp_path}" + "sudo chmod -R u+rwX #{tmp_path}" ) for_more_information( see_installation_guide_section "GitLab" |