diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-09-16 15:33:52 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-09-16 15:34:53 -0400 |
commit | 897e3a20b38d5badea5fa2935f248b27a8c9502d (patch) | |
tree | f01bb912377cbae43d7bf5022c90cf9916d2ba59 /doc | |
parent | e46f5e60b67e932eb39f409f3f3439b46c8a8b12 (diff) | |
download | gitlab-ce-897e3a20b38d5badea5fa2935f248b27a8c9502d.tar.gz |
sudo user is git, not gitlab, not gitlab_ci
[ci skip]
Diffstat (limited to 'doc')
-rw-r--r-- | doc/update/7.14-to-8.0.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/update/7.14-to-8.0.md b/doc/update/7.14-to-8.0.md index 7736afb6df6..2c7003ed063 100644 --- a/doc/update/7.14-to-8.0.md +++ b/doc/update/7.14-to-8.0.md @@ -99,8 +99,8 @@ Don't store it in the same place as your database backups, otherwise your secrets are exposed if one of your backups is compromised. ``` -sudo -u gitlab -H cp config/secrets.yml.example config/secrets.yml -sudo -u gitlab -H chmod 0600 config/secrets.yml +sudo -u git -H cp config/secrets.yml.example config/secrets.yml +sudo -u git -H chmod 0600 config/secrets.yml ``` ### 7. Install libs, migrations, etc. |