diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2014-09-04 08:50:51 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2014-09-04 08:50:51 +0200 |
commit | e9b5f37acca5a634e56cda4d2bc14211c1c01882 (patch) | |
tree | 0461a64a3b38e36f9530afa34c07591ee61981d7 | |
parent | 93f15a49537a47e6a1dead5cec8553b974cd464d (diff) | |
parent | 30db1405d65eebff2d557a602d6114a2889dd882 (diff) | |
download | gitlab-ce-e9b5f37acca5a634e56cda4d2bc14211c1c01882.tar.gz |
Merge pull request #7669 from bbodenmiller/patch-16
update repo recreation details
-rw-r--r-- | doc/raketasks/maintenance.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/raketasks/maintenance.md b/doc/raketasks/maintenance.md index a0901cc4070..f6bd7565799 100644 --- a/doc/raketasks/maintenance.md +++ b/doc/raketasks/maintenance.md @@ -115,8 +115,10 @@ Checking GitLab ... Finished This will create satellite repositories for all your projects. -If necessary, remove the `tmp/repo_satellites` directory and rerun the command below. +If necessary, remove the `repo_satellites` directory and rerun the commands below. ``` -bundle exec rake gitlab:satellites:create RAILS_ENV=production +sudo -u git -H mkdir -p /home/git/gitlab-satellites +sudo -u git -H bundle exec rake gitlab:satellites:create RAILS_ENV=production +sudo chmod u+rwx,g=rx,o-rwx /home/git/gitlab-satellites ``` |