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

101 lines
3.3 KiB
Text
Raw Permalink Normal View History

2021-03-24 16:15:33 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2021-03-24 16:15:33 +01:00
2023-03-14 09:03:56 +01:00
if [ -z "${enable_public_boards:-}" ]; then
2022-09-15 21:20:16 +02:00
enable_public_boards="false"
ynh_app_setting_set --app=$app --key=enable_public_boards --value=$enable_public_boards
2022-09-15 21:13:30 +02:00
fi
2021-03-24 16:15:33 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-03-24 16:15:33 +01:00
2021-04-05 23:05:06 +02:00
ynh_systemd_action --service_name=$app --action=stop --log_path="/var/log/$app/$app.log"
2021-03-24 16:15:33 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-04-06 08:58:51 +02:00
2021-06-19 23:10:54 +02:00
# Create a temporary directory
tmpdir="$(mktemp -d)"
# Backup the config file in the temp dir
2023-03-03 09:19:21 +01:00
cp -a "$install_dir/config.json" "$tmpdir/config.json"
2021-06-19 23:10:54 +02:00
# Remove the app directory securely
2023-03-03 09:29:21 +01:00
ynh_secure_remove --file="$install_dir"
2021-06-19 23:10:54 +02:00
2021-03-24 16:15:33 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2023-03-03 09:19:21 +01:00
ynh_setup_source --dest_dir="$install_dir" #--keep="config.json"
2021-06-19 23:10:54 +02:00
# Copy the admin saved settings from tmp directory to final path
2023-03-03 09:19:21 +01:00
cp -a "$tmpdir/config.json" "$install_dir/config.json"
2021-06-19 23:10:54 +02:00
# Remove the tmp directory securely
ynh_secure_remove --file="$tmpdir"
2021-03-24 16:15:33 +01:00
fi
2023-03-03 09:19:21 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-06-10 11:44:27 +02:00
2021-03-24 16:15:33 +01:00
#=================================================
2023-03-14 09:27:26 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2021-03-24 16:15:33 +01:00
#=================================================
2023-03-14 09:27:26 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2021-03-24 16:15:33 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
# Create a dedicated systemd config
ynh_add_systemd_config
2023-03-14 09:27:26 +01:00
yunohost service add $app --description="Self-hosted kanban board" --log="/var/log/$app/$app.log"
2021-03-24 16:15:33 +01:00
#=================================================
2023-03-14 09:27:26 +01:00
# MODIFY A CONFIG FILE
2021-03-24 16:15:33 +01:00
#=================================================
2023-03-14 09:27:26 +01:00
ynh_script_progression --message="Modifying a config file..." --weight=1
2021-03-24 16:15:33 +01:00
2023-03-14 09:27:26 +01:00
ynh_add_config --template="../conf/config.json" --destination="$install_dir/config.json"
chmod 600 "$install_dir/config.json"
chown $app:$app "$install_dir/config.json"
2021-03-24 16:15:33 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-03-24 16:15:33 +01:00
2023-09-27 00:13:34 +02:00
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
2021-03-24 16:15:33 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last