diff options
author | Robert Kaufmann III <rok3@rokthree.com> | 2013-08-26 13:23:14 -0400 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2013-08-27 18:19:44 +0200 |
commit | 8708662c9c89833da9481e224003a91862feeca0 (patch) | |
tree | a4b5f02b89dc7dc89c2559ffa69602cb5d0d42f1 | |
parent | 7e0ab7b4d193b0d3d79685635ba9f533c4e8d593 (diff) | |
download | gitlab-ci-8708662c9c89833da9481e224003a91862feeca0.tar.gz |
Update installation.md: Correct Postgresql username and move user creation above database prep.
-rw-r--r-- | doc/installation.md | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/doc/installation.md b/doc/installation.md index 0df2179..d4f56f8 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -40,7 +40,12 @@ Install the Bundler Gem: sudo gem install bundler --no-ri --no-rdoc -## 3. Prepare the database +## 3. GitLab CI user: + + sudo adduser --disabled-login --gecos 'GitLab CI' gitlab_ci + + +## 4. Prepare the database You can use either MySQL or PostgreSQL. @@ -82,14 +87,7 @@ You can use either MySQL or PostgreSQL. template1=# \q # Try connecting to the new database with the new user - sudo -u git -H psql -d gitlab_ci_production - - - -## 4. GitLab CI user: - - sudo adduser --disabled-login --gecos 'GitLab CI' gitlab_ci - + sudo -u gitlab_ci -H psql -d gitlab_ci_production ## 5. Get code |