diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-11-22 11:05:45 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-11-22 11:05:45 +0000 |
commit | 55b5d17ac79fb9c81e9da422e906abe575159405 (patch) | |
tree | 8605e75575c702bbbe066787e0f86c8ba1077610 | |
parent | 26cf3e477520b7bad33a35ecdeebdce85eb42ecf (diff) | |
parent | 3a1b21febba669f71da13e5b3ab9fd15cf9450b4 (diff) | |
download | gitlab-ce-55b5d17ac79fb9c81e9da422e906abe575159405.tar.gz |
Merge branch 'patch-10' into 'master'
add missing sudo skip-auto-migration
## What does this MR do?
Fixes minor documentation issue where adding `skip-auto-migration` file does not work because `sudo` is not used.
See merge request !7435
-rw-r--r-- | doc/administration/high_availability/database.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/administration/high_availability/database.md b/doc/administration/high_availability/database.md index 538dada1bae..76f3a0fb387 100644 --- a/doc/administration/high_availability/database.md +++ b/doc/administration/high_availability/database.md @@ -102,7 +102,7 @@ If you use a cloud-managed service, or provide your own PostgreSQL: 1. Exit the database prompt by typing `\q` and Enter. 1. Exit the `gitlab-psql` user by running `exit` twice. 1. Run `sudo gitlab-ctl reconfigure` a final time. -1. Run `touch /etc/gitlab/skip-auto-migrations` to prevent database migrations +1. Run `sudo touch /etc/gitlab/skip-auto-migrations` to prevent database migrations from running on upgrade. Only the primary GitLab application server should handle migrations. |