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

82 lines
2.7 KiB
Text
Raw Normal View History

2021-05-30 12:34:29 +02: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)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2022-07-16 18:40:29 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
2021-05-30 12:34:29 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=5
# Download, check integrity, uncompress and patch the source from app.src
2023-04-03 14:28:50 +02:00
ynh_setup_source --dest_dir=$install_dir --keep=".dispatch/config.toml"
2021-05-30 12:34:29 +02:00
fi
2023-04-03 14:28:50 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-05-30 12:34:29 +02:00
#=================================================
2023-09-07 20:23:32 +02:00
# SETUP SYSTEMD
2021-05-30 12:34:29 +02:00
#=================================================
2023-09-07 20:23:32 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=2
2021-05-30 12:34:29 +02:00
2022-07-16 18:40:29 +02:00
# Create a dedicated NGINX config
2021-05-30 12:34:29 +02:00
ynh_add_nginx_config
2023-09-07 20:23:32 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
yunohost service add $app --description="Web-based IRC client" --log="/var/log/$app/$app.log"
2022-07-16 18:40:29 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..."
2023-12-09 21:40:25 +01:00
ynh_add_config --template="config.default.toml" --destination="$install_dir/.dispatch/config.toml"
2022-07-16 18:40:29 +02:00
2023-04-03 14:28:50 +02:00
chmod 400 "$install_dir/.dispatch/config.toml"
chown $app:$app "$install_dir/.dispatch/config.toml"
2022-07-16 18:40:29 +02:00
2021-05-30 12:34:29 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-07-16 18:40:29 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Listening on port"
2021-05-30 12:34:29 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last