Commit c94ce6fe authored by Achilleas Pipinellis's avatar Achilleas Pipinellis

Merge branch '52346-skip-kerberos-in-update-docs' into 'master'

Skip kerberos when running 'bundle install' in update docs

Closes #52346

See merge request gitlab-org/gitlab-ce!24534
parents 227ce776 bf88c467
...@@ -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