diff options
author | Marin Jankovski <marin@gitlab.com> | 2014-05-27 17:14:41 +0200 |
---|---|---|
committer | Marin Jankovski <marin@gitlab.com> | 2014-05-27 17:14:41 +0200 |
commit | 2341cefd6fa2811a1af41f2068554738d7eebfc4 (patch) | |
tree | 807a376257151323a203c39dd2ff08b23e29a21e /doc/update | |
parent | cb4b504b26a269ba6ebb3fee165296a80d962c69 (diff) | |
download | gitlab-ce-2341cefd6fa2811a1af41f2068554738d7eebfc4.tar.gz |
Move from script to bin directory.
Diffstat (limited to 'doc/update')
-rw-r--r-- | doc/update/upgrader.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/update/upgrader.md b/doc/update/upgrader.md index 72a94f67b3c..d08c8b85b5f 100644 --- a/doc/update/upgrader.md +++ b/doc/update/upgrader.md @@ -19,10 +19,10 @@ __GitLab Upgrader is available only for GitLab version 6.4.2 or higher__ ### 2. Run gitlab upgrade tool cd /home/git/gitlab - sudo -u git -H ruby script/upgrade.rb + sudo -u git -H ruby bin/upgrade.rb # to perform a non-interactive install (no user input required) you can add -y - # sudo -u git -H ruby script/upgrade.rb -y + # sudo -u git -H ruby bin/upgrade.rb -y ### 3. Start application @@ -48,6 +48,6 @@ You've read through the entire guide, and probably did all the steps manually. H ```bash cd /home/git/gitlab; sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production; \ - sudo service gitlab stop; sudo -u git -H ruby script/upgrade.rb -y; sudo service gitlab start; \ + sudo service gitlab stop; sudo -u git -H ruby bin/upgrade.rb -y; sudo service gitlab start; \ sudo service nginx restart; sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production ``` |