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

84 lines
3.2 KiB
Text
Raw Normal View History

2017-06-21 11:34:24 +02:00
#!/bin/bash
2019-08-04 23:00:10 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2021-06-26 08:19:34 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=2
2019-08-04 23:00:10 +02:00
2024-01-29 14:32:20 +01:00
if ynh_compare_current_package_version --comparison le --version 6.4.10~ynh2; then
ynh_die --message="Upgrade from version 6.4.10 is not possible. You must uninstall and reinstall Collabora package manually"
2021-02-04 12:44:49 +01:00
fi
2021-12-21 09:59:10 +01:00
#=================================================
# REMOVE OLD SERVICE INTEGRATION IN YUNOHOST
#=================================================
# Remove the old service from the list of services known by YunoHost (added from `yunohost service add`)
2024-01-29 14:32:20 +01:00
if ynh_exec_warn_less yunohost service status "loolwsd" >/dev/null; then
ynh_script_progression --message="Removing loolwsd service integration..." --weight=1
yunohost service remove "loolwsd"
2021-12-21 09:59:10 +01:00
fi
2024-01-29 16:44:12 +01:00
# Remove the legacy systemd config
2021-12-21 09:59:10 +01:00
ynh_remove_systemd_config --service="loolwsd"
2018-11-02 18:03:53 +01:00
#=================================================
2019-08-04 23:00:10 +02:00
# STANDARD UPGRADE STEPS
2018-11-02 18:03:53 +01:00
#=================================================
2019-08-04 23:00:10 +02:00
# STOP SYSTEMD SERVICE
#=================================================
2021-06-26 08:19:34 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=5
2019-08-04 23:00:10 +02:00
2021-12-21 09:54:22 +01:00
ynh_systemd_action --service_name="coolwsd" --action="stop" --log_path="systemd" --line_match="Stopped Collabora Online WebSocket Daemon"
2018-11-02 18:03:53 +01:00
2024-01-29 16:44:12 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=1
ynh_add_config --template="root_index.html" --destination="$install_dir/index.html"
chown -R "$app:www-data" "$install_dir"
2019-08-04 23:00:10 +02:00
#=================================================
2021-06-26 11:00:55 +02:00
# UPGRADE CONFIG
2019-08-04 23:00:10 +02:00
#=================================================
2021-08-06 10:09:07 +02:00
ynh_script_progression --message="Upgrading config file..." --weight=2
2018-11-02 18:03:53 +01:00
2021-12-21 09:54:22 +01:00
ynh_add_config --template="../conf/coolwsd.xml" --destination="/etc/coolwsd/coolwsd.xml"
2021-08-06 11:47:30 +02:00
2021-12-21 20:21:05 +01:00
chown cool: "/etc/coolwsd/coolwsd.xml"
2021-12-21 09:54:22 +01:00
chmod 640 "/etc/coolwsd/coolwsd.xml"
2020-04-16 01:21:50 +02:00
2019-08-04 23:00:10 +02:00
#=================================================
2024-01-29 14:32:20 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2018-11-02 18:03:53 +01:00
#=================================================
2024-01-29 14:32:20 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2019-08-04 23:00:10 +02:00
2024-01-29 14:32:20 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2021-06-26 09:23:07 +02:00
2021-12-21 09:54:22 +01:00
yunohost service add "coolwsd" --description="Collabora online office suite" --log="/var/log/$app/$app.log"
2021-06-26 09:23:07 +02:00
2019-08-04 23:00:10 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-06-26 08:19:34 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=3
2019-08-04 23:00:10 +02:00
2021-12-21 09:54:22 +01:00
ynh_systemd_action --service_name="coolwsd" --action="restart" --log_path="systemd" --line_match="Ready to accept connections"
2019-08-04 23:00:10 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2018-11-02 18:03:53 +01:00
2021-06-26 08:19:34 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last