diff options
author | Jürgen Treml <mail@juergentreml.de> | 2013-07-05 22:19:50 +0200 |
---|---|---|
committer | Jürgen Treml <mail@juergentreml.de> | 2013-07-19 18:09:51 +0200 |
commit | d624d3ad2650eb5dbde0315caae921b7bb5d49af (patch) | |
tree | f3d56f86e9fbbef7c28296aa59134f05d5a25a65 | |
parent | 8484d33a313407536ce5da05d7e3d177388e6555 (diff) | |
download | gitlab-ci-d624d3ad2650eb5dbde0315caae921b7bb5d49af.tar.gz |
Create dirs for sockets and pids (otherwise GitLab CI service fails to start correctly)
-rw-r--r-- | doc/installation.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/installation.md b/doc/installation.md index 545b593..30756bc 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -104,10 +104,12 @@ You can use either MySQL or PostgreSQL. # Edit application settings sudo -u gitlab_ci -H cp config/application.yml.example config/application.yml sudo -u gitlab_ci -H vim config/application.yml - - # Create a sockets directory + + # Create socket and pid directories sudo -u gitlab_ci -H mkdir tmp/sockets/ sudo chmod -R u+rwX tmp/sockets/ + sudo -u gitlab_ci -H mkdir tmp/pids/ + sudo chmod -R u+rwX tmp/pids/ ### Install gems |