2017-04-10 04:55:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-05-01 20:45:29 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2018-04-06 19:58:23 +02:00
|
|
|
source _common.sh
|
2019-10-07 22:54:13 +02:00
|
|
|
source ynh_install_ruby__2
|
2019-08-11 15:58:52 +02:00
|
|
|
source ynh_add_swap
|
2019-04-06 16:08:48 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2018-05-01 20:45:29 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=4
|
2018-05-01 20:45:29 +02:00
|
|
|
|
2017-04-10 04:55:10 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2019-03-21 02:07:49 +01:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
language=$(ynh_app_setting_get --app=$app --key=language)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
2019-03-21 02:07:49 +01:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
|
2019-05-12 03:01:21 +02:00
|
|
|
admin_mail=$(ynh_user_get_info --username=$admin --key='mail')
|
2019-05-10 16:34:57 +02:00
|
|
|
port_web=$(ynh_app_setting_get --app=$app --key=port_web)
|
|
|
|
port_stream=$(ynh_app_setting_get --app=$app --key=port_stream)
|
2018-05-01 20:45:29 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
paperclip_secret=$(ynh_app_setting_get --app=$app --key=paperclip_secret)
|
|
|
|
secret_key_base=$(ynh_app_setting_get --app=$app --key=secret_key_base)
|
|
|
|
otp_secret=$(ynh_app_setting_get --app=$app --key=otp_secret)
|
|
|
|
vapid_private_key=$(ynh_app_setting_get --app=$app --key=vapid_private_key)
|
|
|
|
vapid_public_key=$(ynh_app_setting_get --app=$app --key=vapid_public_key)
|
2019-03-23 01:54:06 +01:00
|
|
|
|
2019-05-15 12:18:39 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
2020-02-23 18:44:50 +01:00
|
|
|
ynh_script_progression --message="Checking version..." --weight=1
|
2019-05-15 12:18:39 +02:00
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
2018-05-01 20:45:29 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2020-05-18 22:38:55 +02:00
|
|
|
config="$final_path/live/.env.production"
|
|
|
|
|
2018-05-01 20:45:29 +02:00
|
|
|
# If db_name doesn't exist, create it
|
2019-05-10 16:34:57 +02:00
|
|
|
if [ -z "$db_name" ]; then
|
2019-03-23 03:44:14 +01:00
|
|
|
db_name="${app}_production"
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
2018-05-01 20:45:29 +02:00
|
|
|
fi
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2018-05-01 20:45:29 +02:00
|
|
|
# If final_path doesn't exist, create it
|
2019-05-10 16:34:57 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
2018-05-01 20:45:29 +02:00
|
|
|
final_path=/var/www/$app
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2018-05-01 20:45:29 +02:00
|
|
|
fi
|
2017-04-10 04:55:10 +02:00
|
|
|
|
|
|
|
# Check if admin is not null
|
2017-04-17 02:04:18 +02:00
|
|
|
if [[ "$admin" = "" || "$language" = "" ]]; then
|
2017-04-10 04:55:10 +02:00
|
|
|
echo "Unable to upgrade, please contact support"
|
|
|
|
ynh_die
|
|
|
|
fi
|
|
|
|
|
2019-05-22 15:17:31 +02:00
|
|
|
# If port_web doesn't exist, create it, need for old install
|
|
|
|
if [[ -z "$port_web" ]]; then
|
|
|
|
port_web=3000
|
|
|
|
ynh_app_setting_set --app=$app --key=port_web --value=$port_web
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If port_web doesn't exist, create it, need for old install
|
|
|
|
if [[ -z "$port_stream" ]]; then
|
|
|
|
port_stream=4000
|
|
|
|
ynh_app_setting_set --app=$app --key=port_stream --value=$port_stream
|
|
|
|
fi
|
|
|
|
|
2018-06-21 11:08:52 +02:00
|
|
|
# If db_pwd doesn't exist, create it, need for old install
|
2018-06-18 15:15:27 +02:00
|
|
|
if [[ -z "$db_pwd" ]]; then
|
|
|
|
db_pwd=$(ynh_string_random)
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=db_pwd --value=$db_pwd
|
2018-06-18 15:15:27 +02:00
|
|
|
ynh_psql_test_if_first_run
|
|
|
|
sudo --login --user=postgres psql -c"ALTER user $app WITH PASSWORD '$db_pwd'" postgres
|
2020-05-18 22:38:55 +02:00
|
|
|
ynh_replace_string --match_string="DB_PASS=" --replace_string="DB_PASS=${db_pwd}" --target_file="$config"
|
2018-06-18 15:15:27 +02:00
|
|
|
fi
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2019-03-23 01:54:06 +01:00
|
|
|
# If paperclip_secret doesn't exist, retrieve it or create it
|
|
|
|
if [[ -z "$paperclip_secret" ]]; then
|
2020-05-18 22:38:55 +02:00
|
|
|
paperclip_secret=$(grep -oP "PAPERCLIP_SECRET=\K\w+" $config)
|
2019-03-23 02:58:59 +01:00
|
|
|
if [[ -z "$paperclip_secret" ]]; then
|
|
|
|
paperclip_secret=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c128)
|
|
|
|
fi
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=paperclip_secret --value="$paperclip_secret"
|
2019-03-23 01:54:06 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If secret_key_base doesn't exist, retrieve it or create it
|
|
|
|
if [[ -z "$secret_key_base" ]]; then
|
2020-05-18 22:38:55 +02:00
|
|
|
secret_key_base=$(grep -oP "SECRET_KEY_BASE=\K\w+" $config)
|
2019-03-23 02:58:59 +01:00
|
|
|
if [[ -z "$secret_key_base" ]]; then
|
|
|
|
secret_key_base=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c128)
|
|
|
|
fi
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=secret_key_base --value="$secret_key_base"
|
2019-03-23 01:54:06 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If otp_secret doesn't exist, retrieve it or create it
|
|
|
|
if [[ -z "$otp_secret" ]]; then
|
2020-05-18 22:38:55 +02:00
|
|
|
otp_secret=$(grep -oP "OTP_SECRET=\K\w+" $config)
|
2019-03-23 02:58:59 +01:00
|
|
|
if [[ -z "$otp_secret" ]]; then
|
|
|
|
otp_secret=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c128)
|
|
|
|
fi
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=otp_secret --value="$otp_secret"
|
2019-03-23 01:54:06 +01:00
|
|
|
fi
|
|
|
|
|
2019-05-10 21:07:21 +02:00
|
|
|
# If vapid_private_key doesn't exist, retrieve it or create it
|
|
|
|
if [[ -z "$vapid_private_key" ]]; then
|
2020-05-18 22:38:55 +02:00
|
|
|
vapid_private_key=$(grep -oP "VAPID_PRIVATE_KEY=\K.+" $config)
|
|
|
|
vapid_public_key=$(grep -oP "VAPID_PUBLIC_KEY=\K.+" $config)
|
2019-05-10 21:07:21 +02:00
|
|
|
ynh_app_setting_set "$app" vapid_private_key "$vapid_private_key"
|
|
|
|
ynh_app_setting_set "$app" vapid_public_key "$vapid_public_key"
|
|
|
|
fi
|
|
|
|
|
2019-05-14 21:04:05 +02:00
|
|
|
#Remove previous added repository
|
|
|
|
ynh_remove_extra_repo
|
|
|
|
|
2018-05-01 20:45:29 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=442
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2018-05-01 20:45:29 +02:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
2019-04-06 16:08:48 +02:00
|
|
|
ynh_clean_check_starting
|
2018-05-01 20:45:29 +02:00
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2018-05-01 20:45:29 +02:00
|
|
|
#=================================================
|
2019-03-21 02:07:49 +01:00
|
|
|
# CHECK THE PATH
|
2018-05-01 20:45:29 +02:00
|
|
|
#=================================================
|
2017-04-11 17:03:11 +02:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
# Normalize the URL path syntax
|
2020-02-23 18:44:50 +01:00
|
|
|
# N.B. : this is for app installations before YunoHost 2.7
|
|
|
|
# where this value might be something like /foo/ or foo/
|
|
|
|
# instead of /foo ....
|
|
|
|
# If nobody installed your app before 2.7, then you may
|
|
|
|
# safely remove this line
|
2019-05-10 16:34:57 +02:00
|
|
|
path_url=$(ynh_normalize_url_path --path_url=$path_url)
|
2017-05-06 20:34:29 +02:00
|
|
|
|
2018-06-12 18:32:43 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
2019-05-10 16:34:57 +02:00
|
|
|
# STOP SYSTEMD SERVICE
|
2019-03-21 02:07:49 +01:00
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=22
|
2018-06-12 18:32:43 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_systemd_action --service_name=${app}-web --action="stop" --log_path=systemd --line_match="Stopped"
|
|
|
|
ynh_systemd_action --service_name=${app}-sidekiq --action="stop" --log_path=systemd --line_match="Stopped"
|
|
|
|
ynh_systemd_action --service_name=${app}-streaming --action="stop" --log_path=systemd --line_match="Stopped"
|
2018-06-12 18:32:43 +02:00
|
|
|
|
2019-03-18 04:22:38 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-15 12:18:39 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=14
|
|
|
|
|
|
|
|
# Download Mastodon
|
2019-11-22 01:24:17 +01:00
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
|
|
|
|
mkdir $tmpdir/system
|
2019-11-22 23:24:09 +01:00
|
|
|
if [ -d "$final_path/live/public/system" ]; then
|
|
|
|
rsync -a "$final_path/live/public/system" "$tmpdir/."
|
2020-05-18 22:33:02 +02:00
|
|
|
fi
|
2020-05-18 22:38:55 +02:00
|
|
|
rsync -a "$config" "$tmpdir/."
|
2020-04-09 15:57:17 +02:00
|
|
|
ynh_secure_remove --file="$final_path/live"
|
2019-05-15 12:18:39 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path/live"
|
2020-03-28 20:25:37 +01:00
|
|
|
|
|
|
|
# Temporary workaround for https://github.com/tootsuite/mastodon/issues/13292
|
|
|
|
ynh_replace_string --match_string="sidekiq-unique-jobs (6.0.18)" --replace_string="sidekiq-unique-jobs (6.0.20)" --target_file="$final_path/live/Gemfile.lock"
|
|
|
|
|
2019-11-22 01:24:17 +01:00
|
|
|
if [ -d "$tmpdir/system" ]; then
|
|
|
|
rsync -a "$tmpdir/system" "$final_path/live/public/."
|
2019-05-15 12:18:39 +02:00
|
|
|
fi
|
2019-11-22 01:24:17 +01:00
|
|
|
rsync -a "$tmpdir/.env.production" "$final_path/live/."
|
2020-04-09 15:57:17 +02:00
|
|
|
ynh_secure_remove --file="$tmpdir"
|
2017-10-15 10:05:38 +02:00
|
|
|
|
2019-05-15 12:18:39 +02:00
|
|
|
# Clean files which are not needed anymore
|
|
|
|
ynh_secure_remove --file="$final_path/live/config/initializers/timeout.rb"
|
|
|
|
fi
|
2018-06-20 11:54:30 +02:00
|
|
|
|
2018-06-12 18:32:43 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading nginx web server configuration..." --weight=3
|
2019-03-18 04:22:38 +01:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_add_nginx_config 'port_web port_stream'
|
2018-08-25 00:48:50 +02:00
|
|
|
|
2019-03-18 04:22:38 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=24
|
2019-03-18 04:22:38 +01:00
|
|
|
|
2020-02-10 21:40:56 +01:00
|
|
|
ynh_remove_nodejs
|
2020-05-19 18:44:16 +02:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
2019-05-14 21:04:05 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
|
2019-03-18 04:22:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=7
|
2019-03-18 04:22:38 +01:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir=$final_path
|
2019-03-18 04:22:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
2019-08-11 15:58:52 +02:00
|
|
|
#=================================================
|
|
|
|
# ADD SWAP IF NEEDED
|
|
|
|
#=================================================
|
2020-02-23 18:44:50 +01:00
|
|
|
ynh_script_progression --message="Adding swap if needed..." --weight=7
|
2019-08-11 15:58:52 +02:00
|
|
|
|
2020-05-26 13:18:02 +02:00
|
|
|
total_memory=$(ynh_get_ram --total)
|
2019-08-11 15:58:52 +02:00
|
|
|
swap_needed=0
|
|
|
|
|
2020-05-26 13:19:50 +02:00
|
|
|
if [ $total_memory -lt $MEMORY_NEEDED ]; then
|
2019-08-11 15:58:52 +02:00
|
|
|
# Need a minimum of 8Go of memory
|
2020-05-26 13:19:50 +02:00
|
|
|
swap_needed=$(($MEMORY_NEEDED - $total_memory))
|
2019-08-11 15:58:52 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
ynh_script_progression --message="Adding $swap_needed Mo to swap..." --weight=1
|
|
|
|
ynh_add_swap --size=$swap_needed
|
|
|
|
|
2019-03-21 02:58:33 +01:00
|
|
|
#=================================================
|
2019-03-21 03:43:47 +01:00
|
|
|
# INSTALLING RUBY AND BUNDLER
|
2019-03-21 02:58:33 +01:00
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Installing Ruby..." --weight=424
|
2019-03-21 02:58:33 +01:00
|
|
|
|
2020-05-19 01:20:45 +02:00
|
|
|
ynh_install_ruby --ruby_version=$RUBY_VERSION
|
|
|
|
pushd "$final_path/live"
|
|
|
|
gem update --system
|
2020-05-19 01:24:16 +02:00
|
|
|
gem install bundler:$BUNDLER_VERSION --no-document
|
2020-05-19 01:20:45 +02:00
|
|
|
popd
|
2019-03-21 02:58:33 +01:00
|
|
|
|
2019-03-23 01:54:06 +01:00
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Modifying a config file..." --weight=1
|
2019-03-23 01:54:06 +01:00
|
|
|
|
2020-05-18 22:38:55 +02:00
|
|
|
ynh_backup_if_checksum_is_different --file="$config"
|
|
|
|
cp -f ../conf/.env.production.sample "$config"
|
|
|
|
ynh_replace_string --match_string="__DB_USER__" --replace_string="$app" --target_file="$config"
|
|
|
|
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$config"
|
|
|
|
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$config"
|
|
|
|
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$config"
|
|
|
|
ynh_replace_string --match_string="__SMTP_FROM_ADDRESS__" --replace_string="$admin_mail" --target_file="$config"
|
2019-03-23 01:54:06 +01:00
|
|
|
|
|
|
|
language="$(echo $language | head -c 2)"
|
2020-05-18 22:38:55 +02:00
|
|
|
ynh_replace_string --match_string="__LANGUAGE__" --replace_string="$language" --target_file="$config"
|
2019-03-23 01:54:06 +01:00
|
|
|
|
2020-05-18 22:38:55 +02:00
|
|
|
ynh_replace_string --match_string="PAPERCLIP_SECRET=" --replace_string="PAPERCLIP_SECRET=$paperclip_secret" --target_file="$config"
|
2019-03-23 01:54:06 +01:00
|
|
|
|
2020-05-18 22:38:55 +02:00
|
|
|
ynh_replace_string --match_string="__SECRET_KEY_BASE__" --replace_string="$secret_key_base" --target_file="$config"
|
2019-03-23 01:54:06 +01:00
|
|
|
|
2020-05-18 22:38:55 +02:00
|
|
|
ynh_replace_string --match_string="__OTP_SECRET__" --replace_string="$otp_secret" --target_file="$config"
|
2019-03-23 01:54:06 +01:00
|
|
|
|
2020-05-19 13:22:00 +02:00
|
|
|
ynh_replace_string --match_string="__VAPID_PRIVATE_KEY__" --replace_string="$vapid_private_key" --target_file="$config"
|
2020-05-18 22:38:55 +02:00
|
|
|
ynh_replace_string --match_string="__VAPID_PUBLIC_KEY__" --replace_string="$vapid_public_key" --target_file="$config"
|
2019-05-10 21:07:21 +02:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE MASTODON
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading Mastodon..." --weight=2640
|
2018-06-12 18:32:43 +02:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
chown -R "$app": "$final_path"
|
2018-05-23 00:08:40 +02:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
pushd "$final_path/live"
|
2019-03-21 02:31:06 +01:00
|
|
|
ynh_use_nodejs
|
2020-05-19 13:25:24 +02:00
|
|
|
bundle config deployment 'true'
|
|
|
|
bundle config without 'development test'
|
|
|
|
bundle install -j$(getconf _NPROCESSORS_ONLN)
|
2020-05-19 01:20:45 +02:00
|
|
|
yarn install --pure-lockfile
|
|
|
|
RAILS_ENV=production bundle exec rails assets:clean
|
|
|
|
RAILS_ENV=production bundle exec rails assets:precompile
|
|
|
|
RAILS_ENV=production bundle exec rails db:migrate
|
|
|
|
RAILS_ENV=production bin/tootctl cache clear
|
2018-05-31 13:41:03 +02:00
|
|
|
popd
|
2018-05-23 00:08:40 +02:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
# Recalculate and store the checksum of the file for the next upgrade.
|
2020-05-18 22:38:55 +02:00
|
|
|
ynh_store_file_checksum --file="$config"
|
2018-12-26 06:55:29 +01:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP CRON JOB FOR REMOVING CACHE
|
|
|
|
#=================================================
|
2020-05-26 13:22:20 +02:00
|
|
|
ynh_script_progression --message="Setuping a cron job..." --weight=1
|
2019-03-21 02:07:49 +01:00
|
|
|
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_replace_string --match_string="__FINAL_PATH__" --replace_string="$final_path" --target_file="../conf/cron"
|
2020-05-19 01:20:45 +02:00
|
|
|
cp -f ../conf/cron /etc/cron.d/$app
|
2018-12-26 06:55:29 +01:00
|
|
|
|
2018-06-12 18:32:43 +02:00
|
|
|
#=================================================
|
2018-06-21 04:48:02 +02:00
|
|
|
# SETUP SYSTEMD
|
2018-06-12 18:32:43 +02:00
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..." --weight=13
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2018-06-21 04:48:02 +02:00
|
|
|
# Create a dedicated systemd config
|
2020-05-18 22:33:02 +02:00
|
|
|
ynh_replace_string --match_string="__PORT_WEB__" --replace_string="$port_web" --target_file="../conf/mastodon-web.service"
|
2020-05-19 01:20:45 +02:00
|
|
|
ynh_replace_string --match_string="__RBENVROOT__" --replace_string="$RBENV_ROOT" --target_file="../conf/mastodon-web.service"
|
|
|
|
ynh_replace_string --match_string="__RBENVROOT__" --replace_string="$RBENV_ROOT" --target_file="../conf/mastodon-sidekiq.service"
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_replace_string --match_string="__PORT_STREAM__" --replace_string="$port_stream" --target_file="../conf/mastodon-streaming.service"
|
|
|
|
ynh_replace_string --match_string="__NODEJS_PATH__" --replace_string="$nodejs_path" --target_file="../conf/mastodon-streaming.service"
|
2020-05-18 22:33:02 +02:00
|
|
|
ynh_add_systemd_config --service="$app-web" --template="mastodon-web.service"
|
|
|
|
ynh_add_systemd_config --service="$app-sidekiq" --template="mastodon-sidekiq.service"
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_add_systemd_config --service="$app-streaming" --template="mastodon-streaming.service"
|
2017-05-08 13:04:01 +02:00
|
|
|
|
2020-05-26 13:40:04 +02:00
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=3
|
|
|
|
|
|
|
|
yunohost service add "$app-web" --description "$app web service" --log_type "systemd"
|
|
|
|
yunohost service add "$app-sidekiq" --description "$app sidekiq service" --log_type "systemd"
|
|
|
|
yunohost service add "$app-streaming" --description "$app streaming service" --log_type "systemd"
|
|
|
|
|
2018-06-12 18:32:43 +02:00
|
|
|
#=================================================
|
2019-03-18 04:22:38 +01:00
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
2018-06-12 18:32:43 +02:00
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Securing files and directories..." --weight=9
|
2018-06-12 18:32:43 +02:00
|
|
|
|
2019-03-18 04:22:38 +01:00
|
|
|
# Set permissions on app files
|
2019-03-21 02:07:49 +01:00
|
|
|
chown -R $app: $final_path
|
2018-06-12 18:32:43 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading SSOwat configuration..." --weight=1
|
2017-04-20 16:35:44 +02:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
2019-03-21 02:07:49 +01:00
|
|
|
fi
|
2019-03-18 04:22:38 +01:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=48
|
2019-05-10 16:34:57 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=${app}-web --action="start" --log_path=systemd --line_match="Listening on tcp"
|
|
|
|
ynh_systemd_action --service_name=${app}-sidekiq --action="start" --log_path=systemd --line_match="Starting processing"
|
|
|
|
ynh_systemd_action --service_name=${app}-streaming --action="start" --log_path=systemd --line_match="Worker 1 now listening"
|
|
|
|
|
2019-03-18 04:22:38 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Reloading nginx web server..." --weight=2
|
2019-03-18 04:22:38 +01:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-03-18 04:22:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-12 03:01:21 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|