mirror of
https://github.com/YunoHost-Apps/watchdog_ynh.git
synced 2024-06-22 05:42:53 +02:00
58 lines
1.9 KiB
Text
58 lines
1.9 KiB
Text
|
#!/bin/bash
|
||
|
|
||
|
#=================================================
|
||
|
# GENERIC START
|
||
|
#=================================================
|
||
|
# IMPORT GENERIC HELPERS
|
||
|
#=================================================
|
||
|
|
||
|
source _common.sh
|
||
|
source /usr/share/yunohost/helpers
|
||
|
|
||
|
upgrade_type=$(ynh_check_app_version_changed)
|
||
|
|
||
|
#=================================================
|
||
|
# STANDARD UPGRADE STEPS
|
||
|
#=================================================
|
||
|
# ENSURE DOWNWARD COMPATIBILITY
|
||
|
#=================================================
|
||
|
|
||
|
#=================================================
|
||
|
# STOP SYSTEMD SERVICE
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
||
|
|
||
|
ynh_systemd_action --service_name=$app --action="stop"
|
||
|
|
||
|
#=================================================
|
||
|
# REAPPLY SYSTEM CONFIGURATIONS
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Upgrading system configurations related to $app..."
|
||
|
|
||
|
yunohost service add $app
|
||
|
|
||
|
#=================================================
|
||
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
||
|
#=================================================
|
||
|
# UPDATE A CONFIG FILE
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Updating a configuration file..."
|
||
|
|
||
|
ynh_add_config --template="watchdog.conf" --destination="/etc/watchdog.conf"
|
||
|
|
||
|
chmod 400 "/etc/watchdog.conf"
|
||
|
chown root: "/etc/watchdog.conf"
|
||
|
|
||
|
#=================================================
|
||
|
# START SYSTEMD SERVICE
|
||
|
#=================================================
|
||
|
ynh_script_progression --message="Starting a systemd service..."
|
||
|
|
||
|
ynh_systemd_action --service_name=$app --action="start"
|
||
|
|
||
|
#=================================================
|
||
|
# END OF SCRIPT
|
||
|
#=================================================
|
||
|
|
||
|
ynh_script_progression --message="Upgrade of $app completed" --last
|