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

99 lines
3.3 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
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
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
2022-07-16 18:40:29 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..."
2023-04-03 14:28:50 +02:00
ynh_add_config --template="../conf/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
#=================================================
# SETUP SYSTEMD
#=================================================
2022-07-16 18:40:29 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=2
2021-05-30 12:34:29 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
2022-07-16 18:40:29 +02:00
#=================================================
# GENERIC FINALIZATION
2021-05-30 12:34:29 +02:00
#=================================================
2021-09-25 15:20:36 +02:00
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
2021-05-30 12:34:29 +02:00
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
2021-09-20 22:39:16 +02:00
yunohost service add $app --description="Web-based IRC client" --log="/var/log/$app/$app.log"
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