diff options
| author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-04-07 11:22:23 -0700 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-04-07 11:22:23 -0700 |
| commit | 97de212e80737a608d939f648d959671fb0a0142 (patch) | |
| tree | da1e08f3ea96f847fe083a44c9ca86f15bdae7ae | |
| parent | 8bd99779f0d878f374aa6f6dbea70c0be3834a60 (diff) | |
| parent | ef93cc1745dca59ceec57db23ec507f3446b64ea (diff) | |
| download | gitlab-ce-97de212e80737a608d939f648d959671fb0a0142.tar.gz | |
Merge pull request #3522 from dplarson/correct-install-docs
Install gems with user `git`, not `gitlab`
| -rw-r--r-- | doc/install/installation.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index a9ae4b1e138..41202b09b74 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -306,7 +306,7 @@ GitLab uses [Omniauth](http://www.omniauth.org/) for authentication and already These steps are fairly general and you will need to figure out the exact details from the Omniauth provider's documentation. * Add `gem "omniauth-your-auth-provider"` to the [Gemfile](https://github.com/gitlabhq/gitlabhq/blob/master/Gemfile#L18) -* Run `sudo -u gitlab -H bundle install` to install the new gem(s) +* Run `sudo -u git -H bundle install` to install the new gem(s) * Add provider specific configuration options to your `config/gitlab.yml` (you can use the [auth providers section of the example config](https://github.com/gitlabhq/gitlabhq/blob/master/config/gitlab.yml.example#L53) as a reference) * Add icons for the new provider into the [vendor/assets/images/authbuttons](https://github.com/gitlabhq/gitlabhq/tree/master/vendor/assets/images/authbuttons) directory (you can find some more popular ones over at https://github.com/intridea/authbuttons) * Restart GitLab |
