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

84 lines
2.8 KiB
Text
Raw Normal View History

2022-11-02 10:16:52 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-11-02 10:16:52 +01:00
source _common.sh
source /usr/share/yunohost/helpers
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2022-11-02 10:16:52 +01:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=6
ynh_setup_source --dest_dir="$install_dir"
mkdir -p "$install_dir/data"
chmod -R 750 "$install_dir/data"
chown -R $app:$app "$install_dir"
ynh_secure_remove "$install_dir/client"
ynh_secure_remove "$install_dir/server"
2022-11-02 10:16:52 +01:00
fi
#=================================================
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
ynh_add_nginx_config
2022-11-02 10:16:52 +01:00
ynh_add_systemd_config
yunohost service add $app --description="Open Source Push Notification Server" --log="/var/log/$app/$app.log"
#=================================================
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
2022-11-02 10:16:52 +01:00
ynh_add_config --template="server.yml" --destination="$install_dir/server.yml"
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Updating simple command wrapper..." --weight=1
ynh_add_config --template="ntfy.sh" --destination="$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
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
2022-11-02 10:16:52 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-11-02 10:16:52 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last