1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/glitchsoc_ynh.git synced 2024-09-03 19:15:59 +02:00
glitchsoc_ynh/scripts/upgrade

65 lines
1.6 KiB
Text
Raw Normal View History

#!/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)
2017-04-17 02:04:18 +02:00
language=$(ynh_app_setting_get "$app" language)
CHECK_PATH # Checks and corrects the syntax of the path.
# Check if admin is not null
2017-04-17 02:04:18 +02:00
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*
2017-04-22 23:10:37 +02:00
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
2017-04-11 17:03:11 +02:00
# Stop Mastodon Services
2017-04-17 02:04:18 +02:00
sudo systemctl stop mastodon-*.service
2017-04-11 17:03:11 +02:00
# Update Mastodon
2017-04-28 18:07:45 +02:00
pushd /opt/mastodon/live
sudo su - $app <<COMMANDS
2017-04-28 18:07:45 +02:00
pushd ~/live
2017-04-17 02:04:18 +02:00
git fetch
git pull https://github.com/tootsuite/mastodon.git master
2017-04-29 22:05:18 +02:00
git checkout $(git tag | tail -n 1)
2017-04-17 02:04:18 +02:00
bin/bundle install
2017-04-28 18:37:00 +02:00
yarn install --pure-lockfile
2017-04-17 02:04:18 +02:00
RAILS_ENV=production bundle exec rails assets:clean
RAILS_ENV=production bundle exec rails assets:precompile
RAILS_ENV=production bundle exec rails db:migrate
COMMANDS
# Reload Nginx
sudo systemctl reload nginx
2017-04-20 16:35:44 +02:00
# Set app public
ynh_app_setting_set "$app" unprotected_uris "/"
# Reload SSOwat configuration
sudo yunohost app ssowatconf
2017-04-17 02:04:18 +02:00
# Restart Mastodon
2017-04-20 16:35:44 +02:00
sudo systemctl start mastodon-*.service