diff options
author | dosire <sytses@gmail.com> | 2014-01-06 14:12:30 +0100 |
---|---|---|
committer | dosire <sytses@gmail.com> | 2014-01-06 14:12:30 +0100 |
commit | 54ddca5c4e93f4359b2c6b9ed81291b0c9f13470 (patch) | |
tree | 19c43a164914f500163a0d5bf2412c407dc0f1eb /doc | |
parent | d187ffebee8170877df9a99ec995ffd81aac2201 (diff) | |
download | gitlab-ce-54ddca5c4e93f4359b2c6b9ed81291b0c9f13470.tar.gz |
Simplify upgrade guide based on 6-4 functionality mentioned by Jacob.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/update/6.0-to-6.4.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/update/6.0-to-6.4.md b/doc/update/6.0-to-6.4.md index c1c5abed6d6..6c0cfafcdf6 100644 --- a/doc/update/6.0-to-6.4.md +++ b/doc/update/6.0-to-6.4.md @@ -81,7 +81,7 @@ git diff 6-0-stable:config/gitlab.yml.example 6-4-stable:config/gitlab.yml.examp ```bash sudo -u git -H cp config/initializers/rack_attack.rb.example config/initializers/rack_attack.rb ``` -* Uncomment `config.middleware.use Rack::Attack` in `/home/git/gitlab/config/application.rb` + * Set up logrotate ```bash @@ -91,9 +91,7 @@ sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab ### 7. Update Init script ```bash -sudo rm /etc/init.d/gitlab -sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/6-4-stable/lib/support/init.d/gitlab -sudo chmod +x /etc/init.d/gitlab +sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab ``` ### 8. Start application |