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

208 lines
7.1 KiB
Text
Raw Normal View History

2015-11-18 17:23:35 +01:00
#!/bin/bash
2017-10-11 12:13:37 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-01-11 23:46:48 +01:00
source _common.sh
source /usr/share/yunohost/helpers
2015-11-18 17:23:35 +01:00
2017-10-11 12:13:37 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2021-01-11 23:46:48 +01:00
ynh_clean_check_starting
2015-11-18 17:23:35 +01:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2015-11-18 17:23:35 +01:00
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
# LOAD SETTINGS
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=2
2017-10-11 12:13:37 +02:00
2021-01-11 23:46:48 +01:00
app=$YNH_APP_INSTANCE_NAME
2021-01-11 23:46:48 +01:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
port=$(ynh_app_setting_get --app=$app --key=port)
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)
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
# CHECK VERSION
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
ynh_script_progression --message="Checking version..." --weight=1
2017-10-11 12:13:37 +02:00
2021-01-11 23:46:48 +01:00
upgrade_type=$(ynh_check_app_version_changed)
2015-11-18 17:23:35 +01:00
#=================================================
2021-01-11 23:46:48 +01:00
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
# Convert is_public from "Yes"/"No" to 1 / 0
if [[ $is_public == "Yes" ]]; then
is_public=1
elif [[ $is_public == "No" ]]; then
is_public=0
fi
2021-01-11 23:46:48 +01:00
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
2018-01-29 13:40:03 +01:00
# Save the port used if not present
if ! [[ "$port" ]]; then
port=8065
2021-01-11 23:46:48 +01:00
ynh_app_setting_set --app=$app --key=port --value=$port
2018-01-29 13:40:03 +01:00
fi
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2017-10-11 12:13:37 +02:00
2021-01-11 23:46:48 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# Restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2015-11-18 17:23:35 +01:00
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
# STANDARD UPGRADE STEPS
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=3
2017-10-11 12:13:37 +02:00
2021-01-11 23:46:48 +01:00
ynh_systemd_action --service_name=$app --action=stop --log_path="/var/log/$app/$app.log"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=2
# Create a temporary directory
tmpdir="$(mktemp -d)"
# Backup the config file in the temp dir
cp -a "$final_path/config/config.json" "$tmpdir/config.json"
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
# Copy the admin saved settings from tmp directory to final path
cp -a "$tmpdir/config.json" "$final_path/config/config.json"
# Remove the tmp directory securely
ynh_secure_remove --file="$tmpdir"
fi
2015-11-18 17:23:35 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-01-11 23:46:48 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=5
2021-01-11 23:46:48 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
2021-01-11 23:46:48 +01:00
# CREATE DEDICATED USER
#=================================================
2021-01-11 23:46:48 +01:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-01-11 23:46:48 +01:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app
#=================================================
2021-01-11 23:46:48 +01:00
# SETUP SYSTEMD
#=================================================
2021-01-11 23:46:48 +01:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=2
2021-01-11 23:46:48 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
2017-10-11 12:13:37 +02:00
#=================================================
# SPECIFIC UPGRADE STEPS
#=================================================
2021-01-11 23:46:48 +01:00
# # Fix log FileLocation path (changed in Mattermost 3.8, makes Mattermost >= 4.2 crash)
# # https://docs.mattermost.com/administration/changelog.html#release-v3-8-3
# ynh_replace_string --match_string "\"FileLocation\": \"/var/log/mattermost.log\"" --replace_string "\"FileLocation\": \"/var/log\"" --target_file "$config_file"
2021-01-11 23:46:48 +01:00
# # Move log files to a directory (rather than directly in /var/log)
# # See https://github.com/YunoHost-Apps/mattermost_ynh/issues/61
# mkdir -p "$logs_path"
# ynh_replace_string --match_string "\"FileLocation\": \"/var/log\"" --replace_string "\"FileLocation\": \"$logs_path\"" --target_file "$config_file"
# if [ -f "/var/log/${app}.log" ]; then
# mv "/var/log/${app}.log" "$logs_path/"
# fi
#=================================================
# CREATE DIRECTORY FOR DATA
#=================================================
ynh_script_progression --message="Creating the data directory..." --weight=1
# Define app's data directory
data_path="/home/yunohost.app/$app"
# Create datadir folder
mkdir -p $data_path
# Give permission to the datadir
chown -R $app: "$data_path"
2017-10-11 12:13:37 +02:00
#=================================================
# RESTORE FILE PERMISSIONS
#=================================================
2021-01-11 23:46:48 +01:00
chown -R $app: $final_path
chmod -R g+w $final_path
chown -R $app: "/var/log/$app"
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
yunohost service add $app --description="Collaboration platform built for developers" --log="/var/log/$app/$app.log"
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=2
# Start a systemd service
ynh_systemd_action --service_name=$app --action=start --log_path="systemd" --line_match="Started Mattermost"
2015-11-18 17:23:35 +01:00
2017-10-11 12:13:37 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2021-01-11 23:46:48 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2017-10-11 12:13:37 +02:00
2021-01-11 23:46:48 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
# END OF SCRIPT
2017-10-11 12:13:37 +02:00
#=================================================
2021-01-11 23:46:48 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last