diff options
author | Axilleas Pipinellis <axilleas@archlinux.gr> | 2013-06-17 11:38:27 +0300 |
---|---|---|
committer | Axilleas Pipinellis <axilleas@archlinux.gr> | 2013-06-17 11:38:27 +0300 |
commit | ddc57ece6bac4acb904035c1927f8b74f1d632ac (patch) | |
tree | e709e0dfeda680116eb7d34aa2f883efc141d877 /doc/update | |
parent | b1bdd82992b5133e24154c8692e25e79049cd907 (diff) | |
download | gitlab-ce-ddc57ece6bac4acb904035c1927f8b74f1d632ac.tar.gz |
Create uploads dir otherwise backup fails. Fix #4304
Diffstat (limited to 'doc/update')
-rw-r--r-- | doc/update/5.1-to-5.2.md | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/doc/update/5.1-to-5.2.md b/doc/update/5.1-to-5.2.md index 3f874555f49..23de2d99c58 100644 --- a/doc/update/5.1-to-5.2.md +++ b/doc/update/5.1-to-5.2.md @@ -52,17 +52,26 @@ sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production ### 6. Update Init script ```bash +cd /home/git/gitlab sudo rm /etc/init.d/gitlab -sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-2-stable/lib/support/init.d/gitlab +sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab sudo chmod +x /etc/init.d/gitlab ``` -### 6. Start application +### 7. Create uploads directory + +```bash +cd /home/git/gitlab +sudo -u git -H mkdir public/uploads +sudo chmod -R u+rwX public/uploads +``` + +### 8. Start application sudo service gitlab start sudo service nginx restart -### 7. Check application status +### 9. Check application status Check if GitLab and its environment are configured correctly: |