diff options
| author | nemsia <nemsia@nemsia.org> | 2017-10-15 10:05:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-15 10:05:38 +0200 |
| commit | a8a28748648c58612068c15c72a6b65f59e225e2 (patch) | |
| tree | ca37ac9ff13fa31055f882d9a2c8ef808b8e29f9 /scripts/upgrade | |
| parent | 76951dc7dfe1b02785f1d26245865df9d211e5bd (diff) | |
| download | mastodon_ynh-a8a28748648c58612068c15c72a6b65f59e225e2.tar.gz mastodon_ynh-a8a28748648c58612068c15c72a6b65f59e225e2.tar.bz2 mastodon_ynh-a8a28748648c58612068c15c72a6b65f59e225e2.zip | |
Upgrade to 2.0.0 (#56)
* Update to 2.0.0
Diffstat (limited to 'scripts/upgrade')
| -rw-r--r-- | scripts/upgrade | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/scripts/upgrade b/scripts/upgrade index 6726f92..0c469bb 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -67,13 +67,28 @@ fi # add additional package for upgrade ynh_package_install pkg-config libprotobuf-dev protobuf-compiler libicu-dev libidn11-dev postgresql-server-dev-9.4 +# Install ruby 2.4.2 for release 2.0 +sudo su - $app <<RCOMMANDS +cd $final_path/.rbenv && git pull && cd - +cd $final_path/.rbenv/plugins/ruby-build && git pull && cd - +$final_path/.rbenv/bin/rbenv install 2.4.2 || true +$final_path/.rbenv/versions/2.4.2/bin/ruby -v +RCOMMANDS + +# Create symlink for ruby 2.4.2 +sudo ln -s $final_path/.rbenv/versions/2.4.2/bin/ruby /usr/bin/ruby || true + +# Install Mastodon +sudo su - $app <<MCOMMANDS +pushd ~/live +$final_path/.rbenv/versions/2.4.2/bin/gem install bundler +bin/bundle install --deployment --without development test +yarn install --pure-lockfile +MCOMMANDS + # Apply Mastodon upgrade sudo su - $app <<COMMANDS pushd ~/live -bin/bundle install -yarn install --pure-lockfile -# For 1.4.1 -> 1.4.2 migration prepare_for_foreign_keys is needed -RAILS_ENV=production bundle exec rails mastodon:maintenance:prepare_for_foreign_keys RAILS_ENV=production bundle exec rails assets:clean RAILS_ENV=production bundle exec rails assets:precompile RAILS_ENV=production bundle exec rails db:migrate |
