2022-11-02 10:16:52 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2022-11-18 09:48:08 +01:00
|
|
|
ynh_script_progression --message="Checking version..." --weight=1
|
2022-11-02 10:16:52 +01:00
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=6
|
|
|
|
ntfy_setup_source
|
2022-11-02 10:16:52 +01:00
|
|
|
fi
|
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Updating configuration file..." --weight=1
|
|
|
|
ynh_add_config -t "server.yml" -d "$install_dir/server.yml"
|
2022-11-02 10:16:52 +01:00
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2022-11-18 09:48:08 +01:00
|
|
|
yunohost service add $app
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Updating simple command wrapper..." --weight=1
|
|
|
|
ynh_add_config -t "ntfy.sh" -d "$install_dir/ntfy.sh"
|
|
|
|
chown $app:$app "$install_dir/ntfy.sh"
|
|
|
|
chmod u+x "$install_dir/ntfy.sh"
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Upgrading web server configuration..." --weight=2
|
|
|
|
ynh_add_nginx_config
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Restarting systemd service..." --weight=1
|
|
|
|
ynh_systemd_action --action=restart
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Upgrade completed" --last
|