diff options
author | Alejandro RodrÃguez <alejorro70@gmail.com> | 2016-09-28 16:58:03 -0300 |
---|---|---|
committer | Alejandro RodrÃguez <alejorro70@gmail.com> | 2016-09-28 16:58:03 -0300 |
commit | 26221e7b85e7e27049beb210dc65ee5d779ddfbc (patch) | |
tree | 9a933ceb716e8694051e6a7ab6ca372cefb72458 /doc/install | |
parent | 3830b857fdbd78d3a0e53a71d12ef894b4a12062 (diff) | |
download | gitlab-ce-26221e7b85e7e27049beb210dc65ee5d779ddfbc.tar.gz |
[ci-skip] Correct gitlab-shell installation instructions in docs22352-cannot-install-gitlab-shell-on-ubuntu-server-with-no-previous-gitlab-install
With the introduction of repository storages validations it becomes
necessary to add the flag `SKIP_STORAGE_VALIDATION` to the gitlab-shell
install command, since that command will create the storage paths
Diffstat (limited to 'doc/install')
-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 3ac813aa914..cb4c1f4a091 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -381,7 +381,7 @@ sudo usermod -aG redis git GitLab Shell is an SSH access and repository management software developed specially for GitLab. # Run the installation task for gitlab-shell (replace `REDIS_URL` if needed): - sudo -u git -H bundle exec rake gitlab:shell:install REDIS_URL=unix:/var/run/redis/redis.sock RAILS_ENV=production + sudo -u git -H bundle exec rake gitlab:shell:install REDIS_URL=unix:/var/run/redis/redis.sock RAILS_ENV=production SKIP_STORAGE_VALIDATION=true # By default, the gitlab-shell config is generated from your main GitLab config. # You can review (and modify) the gitlab-shell config as follows: |