diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-15 10:22:37 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-15 10:22:37 +0200 |
commit | b31535494e5e9d13a3643809c7699c9f6e512d21 (patch) | |
tree | c59e087e8df3f4e6db11fb6802c1d1dee1c578ae | |
parent | bf01c789c77b8826cc6606e51a902db90aadac70 (diff) | |
parent | cec3b6c355279692a6cd9cf3b884517edcea376d (diff) | |
download | gitlab-ce-b31535494e5e9d13a3643809c7699c9f6e512d21.tar.gz |
Merge pull request #7744 from bbodenmiller/patch-14
add missing cleanup step
-rw-r--r-- | doc/update/4.2-to-5.0.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/update/4.2-to-5.0.md b/doc/update/4.2-to-5.0.md index 897cd0b91fa..cde679598f7 100644 --- a/doc/update/4.2-to-5.0.md +++ b/doc/update/4.2-to-5.0.md @@ -195,6 +195,12 @@ sudo rm -R tmp sudo -u git -H mkdir tmp sudo chmod -R u+rwX tmp/ +# create directory for pids, make sure GitLab can write to it +sudo -u git -H mkdir tmp/pids/ +sudo chmod -R u+rwX tmp/pids/ + +# if you are already running a newer version of GitLab check that installation guide for other tmp folders you need to create + # reboot system sudo reboot |