Commit bf88c467 authored by Rémy Coutable's avatar Rémy Coutable

Skip kerberos when running 'bundle install' in update docs

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52346.
Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 227ce776
...@@ -317,11 +317,11 @@ sudo systemctl daemon-reload ...@@ -317,11 +317,11 @@ sudo systemctl daemon-reload
```bash ```bash
cd /home/git/gitlab cd /home/git/gitlab
# MySQL installations (note: the line below states '--without postgres')
sudo -u git -H bundle install --without postgres development test --deployment
# PostgreSQL installations (note: the line below states '--without mysql') # PostgreSQL installations (note: the line below states '--without mysql')
sudo -u git -H bundle install --without mysql development test --deployment sudo -u git -H bundle install --deployment --without development test mysql aws kerberos
# MySQL installations (note: the line below states '--without postgres')
sudo -u git -H bundle install --deployment --without development test postgres aws kerberos
# Optional: clean up old gems # Optional: clean up old gems
sudo -u git -H bundle clean sudo -u git -H bundle clean
......
...@@ -317,11 +317,11 @@ sudo systemctl daemon-reload ...@@ -317,11 +317,11 @@ sudo systemctl daemon-reload
```bash ```bash
cd /home/git/gitlab cd /home/git/gitlab
# MySQL installations (note: the line below states '--without postgres')
sudo -u git -H bundle install --without postgres development test --deployment
# PostgreSQL installations (note: the line below states '--without mysql') # PostgreSQL installations (note: the line below states '--without mysql')
sudo -u git -H bundle install --without mysql development test --deployment sudo -u git -H bundle install --deployment --without development test mysql aws kerberos
# MySQL installations (note: the line below states '--without postgres')
sudo -u git -H bundle install --deployment --without development test postgres aws kerberos
# Optional: clean up old gems # Optional: clean up old gems
sudo -u git -H bundle clean sudo -u git -H bundle clean
......
...@@ -320,11 +320,12 @@ sudo systemctl daemon-reload ...@@ -320,11 +320,12 @@ sudo systemctl daemon-reload
```bash ```bash
cd /home/git/gitlab cd /home/git/gitlab
# PostgreSQL installations (note: the line below states '--without mysql')
sudo -u git -H bundle install --deployment --without development test mysql aws kerberos
# MySQL installations (note: the line below states '--without postgres') # MySQL installations (note: the line below states '--without postgres')
sudo -u git -H bundle install --without postgres development test --deployment sudo -u git -H bundle install --deployment --without development test postgres aws kerberos
# PostgreSQL installations (note: the line below states '--without mysql')
sudo -u git -H bundle install --without mysql development test --deployment
# Optional: clean up old gems # Optional: clean up old gems
sudo -u git -H bundle clean sudo -u git -H bundle clean
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment