aboutsummaryrefslogtreecommitdiff
path: root/scripts/upgrade
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/upgrade')
-rw-r--r--scripts/upgrade20
1 files changed, 10 insertions, 10 deletions
diff --git a/scripts/upgrade b/scripts/upgrade
index 2e8753b..3f81e57 100644
--- a/scripts/upgrade
+++ b/scripts/upgrade
@@ -222,8 +222,8 @@ ynh_script_progression --message="Installing Ruby..."
pushd "$final_path/live"
ynh_use_ruby
- $ynh_gem update --system
- $ynh_gem install bundler:$BUNDLER_VERSION --no-document
+ ynh_gem update --system
+ ynh_gem install bundler --no-document
popd
#=================================================
@@ -243,15 +243,15 @@ ynh_script_progression --message="Upgrading Mastodon..."
chown -R "$app": "$final_path"
pushd "$final_path/live"
- sudo -u $app $ynh_ruby_load_path $ruby_path/bundle config deployment 'true'
- sudo -u $app $ynh_ruby_load_path $ruby_path/bundle config without 'development test'
- sudo -u $app $ynh_ruby_load_path $ruby_path/bundle install -j$(getconf _NPROCESSORS_ONLN)
+ sudo -u $app bin/bundle config deployment 'true'
+ sudo -u $app bin/bundle config without 'development test'
+ sudo -u $app bin/bundle install -j$(getconf _NPROCESSORS_ONLN)
ynh_use_nodejs
sudo -u $app $ynh_node_load_PATH yarn install --pure-lockfile
- sudo -u $app RAILS_ENV=production $ynh_ruby_load_path $ruby_path/bundle exec rails assets:clean
- sudo -u $app RAILS_ENV=production $ynh_ruby_load_path $ruby_path/bundle exec rails assets:precompile
- sudo -u $app RAILS_ENV=production $ynh_ruby_load_path $ruby_path/bundle exec rails db:migrate
- sudo -u $app RAILS_ENV=production $ynh_ruby_load_path bin/tootctl cache clear
+ sudo -u $app RAILS_ENV=production bin/bundle exec rails assets:clean
+ sudo -u $app RAILS_ENV=production bin/bundle exec rails assets:precompile
+ sudo -u $app RAILS_ENV=production bin/bundle exec rails db:migrate
+ sudo -u $app RAILS_ENV=production bin/tootctl cache clear
popd
#=================================================
@@ -295,7 +295,7 @@ yunohost service add "$app-streaming" --description "$app streaming service"
#=================================================
ynh_script_progression --message="Starting a systemd service..."
-ynh_systemd_action --service_name=${app}-web --action="start" --log_path=systemd --line_match="Listening on tcp"
+ynh_systemd_action --service_name=${app}-web --action="start" --log_path=systemd --line_match="Listening on"
ynh_systemd_action --service_name=${app}-sidekiq --action="start" --log_path=systemd --line_match="Schedules Loaded"
ynh_systemd_action --service_name=${app}-streaming --action="start" --log_path=systemd --line_match="Worker 1 now listening"