mirror of
https://github.com/YunoHost-Apps/glitchsoc_ynh.git
synced 2024-09-03 19:15:59 +02:00
59 lines
1.5 KiB
Bash
59 lines
1.5 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*
|
|
|
|
# Stop Mastodon Services
|
|
sudo systemctl stop mastodon-*.service
|
|
|
|
# Update Mastodon
|
|
sudo su - $app <<COMMANDS
|
|
pushd ~/live
|
|
git fetch
|
|
git pull https://github.com/tootsuite/mastodon.git master
|
|
git checkout $(git tag | tail -n 1)
|
|
bin/bundle install
|
|
yarn install --production
|
|
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
|
|
|
|
# Set app public
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
|
|
# Restart Mastodon
|
|
sudo systemctl start mastodon-*.service
|