Commit 34c5e6de28aabbf1894d24ed5838f33e068c0c8d
1 parent
5b4aba5f
Exists in
spb-stable
and in
3 other branches
Remove Install doc notes about creating certain folders
Showing
1 changed file
with
6 additions
and
9 deletions
Show diff stats
doc/install/installation.md
@@ -197,20 +197,17 @@ You can change `6-6-stable` to `master` if you want the *bleeding edge* version, | @@ -197,20 +197,17 @@ You can change `6-6-stable` to `master` if you want the *bleeding edge* version, | ||
197 | # Make sure GitLab can write to the log/ and tmp/ directories | 197 | # Make sure GitLab can write to the log/ and tmp/ directories |
198 | sudo chown -R git log/ | 198 | sudo chown -R git log/ |
199 | sudo chown -R git tmp/ | 199 | sudo chown -R git tmp/ |
200 | - sudo chmod -R u+rwX log/ | ||
201 | - sudo chmod -R u+rwX tmp/ | 200 | + sudo chmod -R u+rwX log/ |
201 | + sudo chmod -R u+rwX tmp/ | ||
202 | 202 | ||
203 | # Create directory for satellites | 203 | # Create directory for satellites |
204 | sudo -u git -H mkdir /home/git/gitlab-satellites | 204 | sudo -u git -H mkdir /home/git/gitlab-satellites |
205 | 205 | ||
206 | - # Create directories for sockets/pids and make sure GitLab can write to them | ||
207 | - sudo -u git -H mkdir tmp/pids/ | ||
208 | - sudo -u git -H mkdir tmp/sockets/ | ||
209 | - sudo chmod -R u+rwX tmp/pids/ | ||
210 | - sudo chmod -R u+rwX tmp/sockets/ | 206 | + # Make sure GitLab can write to the tmp/pids/ and tmp/sockets/ directories |
207 | + sudo chmod -R u+rwX tmp/pids/ | ||
208 | + sudo chmod -R u+rwX tmp/sockets/ | ||
211 | 209 | ||
212 | - # Create public/uploads directory otherwise backup will fail | ||
213 | - sudo -u git -H mkdir public/uploads | 210 | + # Make sure GitLab can write to the public/uploads/ directory |
214 | sudo chmod -R u+rwX public/uploads | 211 | sudo chmod -R u+rwX public/uploads |
215 | 212 | ||
216 | # Copy the example Unicorn config | 213 | # Copy the example Unicorn config |