mirror of
https://github.com/YunoHost-Apps/mastodon_ynh.git
synced 2024-09-03 19:46:02 +02:00
ba3ce5d001
* upgrade-2.3.3 upgrade-2.3.3 git fetch with all tags forced * Upgrade 2.4.0 (#21) * Upgrade 2.4 (#79) * Upgrade rb to 2.5.1 * Update upgrade * Fix 2.3.3 * Add trace on assets:precompile * Yarn install and precompile Update 2.4 need root to yarn install and precompile, Temporary bad fix. * Update upgrade * Fix migrate * Update README.md * Update manifest.json * Upgrade yarn to 1.7.0 * Restart postgresql on upgrade * Ready to Debian Stretch (#22) * Ready to Debian Stretch * rb 2.5.1 on install * Yarn install on root * rails precompile fix * Fix backup on stretch * clean * fix backup stretch * Change systemd mastodon service restart * Change systemd script for stretch * Ready to mastodon 2.4.1 * Fix migrated stretch (#23) * Force bundle re-install * Add check debian on upgrade and clean check
125 lines
3.7 KiB
Bash
125 lines
3.7 KiB
Bash
#!/bin/bash
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
set -eu
|
|
|
|
# Loads the generic functions usually used in the script
|
|
source .fonctions
|
|
# Source YunoHost helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# See comments in install script
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Retrieve app settings
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
path=$(ynh_app_setting_get "$app" path)
|
|
admin=$(ynh_app_setting_get "$app" admin)
|
|
language=$(ynh_app_setting_get "$app" language)
|
|
|
|
CHECK_PATH # Checks and corrects the syntax of the path.
|
|
|
|
# Check if admin is not null
|
|
if [[ "$admin" = "" || "$language" = "" ]]; then
|
|
echo "Unable to upgrade, please contact support"
|
|
ynh_die
|
|
fi
|
|
|
|
final_path=/opt/$app
|
|
|
|
db_name=$app
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
sudo sed -i "s@__PATH__@$app@g" ../conf/nginx.conf*
|
|
sudo sed -i "s@__FINALPATH__@$final_path@g" ../conf/nginx.conf*
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
# Stop Mastodon Services
|
|
sudo systemctl stop mastodon-web.service mastodon-sidekiq.service mastodon-streaming.service
|
|
|
|
# Change owner of live folder
|
|
sudo chown -R $app: $final_path/live
|
|
|
|
# Download Mastodon
|
|
sudo su - $app <<PULLCOMMANDS
|
|
pushd ~/live
|
|
git fetch -t
|
|
git reset --hard origin/master
|
|
git pull https://github.com/tootsuite/mastodon.git master
|
|
PULLCOMMANDS
|
|
|
|
# Switch branch to tagged release
|
|
cd $final_path/live
|
|
version=$(curl -s https://api.github.com/repos/tootsuite/mastodon/releases/latest | grep tag_name | cut -d\" -f4)
|
|
sudo su - $app <<SWITCHCOMMANDS
|
|
pushd ~/live
|
|
git checkout $version
|
|
SWITCHCOMMANDS
|
|
|
|
# upgrade Node.js v4 to v6
|
|
node_version=$(nodejs --version)
|
|
if [[ $node_version =~ ^v4.*$ ]]; then
|
|
pushd /opt
|
|
curl -sL https://deb.nodesource.com/setup_6.x | sudo bash -
|
|
sudo apt-get -y install nodejs
|
|
fi
|
|
|
|
# add additional package for upgrade
|
|
ynh_package_install yarn pkg-config libprotobuf-dev protobuf-compiler libicu-dev libidn11-dev postgresql-server-dev-all
|
|
|
|
# Install ruby 2.5.1 for release 2.4.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.5.1 || true
|
|
$final_path/.rbenv/versions/2.5.1/bin/ruby -v
|
|
RCOMMANDS
|
|
|
|
# Create symlink for ruby 2.5.1
|
|
sudo rm /usr/bin/ruby || true
|
|
sudo ln -s $final_path/.rbenv/versions/2.5.1/bin/ruby /usr/bin/ruby || true
|
|
|
|
# Install Mastodon
|
|
sudo su - $app <<MCOMMANDS
|
|
pushd ~/live
|
|
$final_path/.rbenv/versions/2.5.1/bin/gem install bundler
|
|
if [ "$(lsb_release --codename --short)" == "jessie" ]; then
|
|
$final_path/.rbenv/versions/2.5.1/bin/bundle install --deployment --without development test
|
|
else
|
|
$final_path/.rbenv/versions/2.5.1/bin/bundle install --deployment --force --without development test
|
|
fi
|
|
MCOMMANDS
|
|
|
|
# Install package with yarn and restart postgresql
|
|
pushd $final_path/live
|
|
yarn install --pure-lockfile
|
|
systemctl restart postgresql
|
|
popd
|
|
|
|
# Apply Mastodon upgrade
|
|
pushd $final_path/live
|
|
RAILS_ENV=production $final_path/.rbenv/versions/2.5.1/bin/bundle exec rails assets:clean
|
|
RAILS_ENV=production $final_path/.rbenv/versions/2.5.1/bin/bundle exec rails assets:precompile --trace
|
|
popd
|
|
|
|
sudo su - $app <<UCOMMANDS
|
|
pushd ~/live
|
|
RAILS_ENV=production $final_path/.rbenv/versions/2.5.1/bin/bundle exec rails db:migrate
|
|
# Upgrade to 2.2.0
|
|
RAILS_ENV=production $final_path/.rbenv/versions/2.5.1/bin/bundle exec rails mastodon:maintenance:remove_regeneration_markers
|
|
UCOMMANDS
|
|
|
|
# Restart Mastodon
|
|
sudo systemctl start mastodon-web.service mastodon-sidekiq.service mastodon-streaming.service
|
|
|
|
# Waiting start all services
|
|
sleep 30
|
|
|
|
# Reload Nginx
|
|
sudo systemctl reload nginx
|
|
|
|
# Set app public
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
|
|
# Reload SSOwat configuration
|
|
sudo yunohost app ssowatconf
|