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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-06-26 08:19:34 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2017-06-21 11:34:24 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
domain=$(ynh_app_setting_get --app="$app" --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
2019-08-04 23:43:41 +02:00
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
2019-08-04 23:00:10 +02:00
|
|
|
password=$(ynh_app_setting_get --app="$app" --key=password)
|
2019-08-04 23:46:22 +02:00
|
|
|
nextcloud_domain=$(ynh_app_setting_get --app="$app" --key=nextcloud_domain)
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
|
|
|
# If db_name doesn't exist, create it
|
|
|
|
if [ -z "$path_url" ]; then
|
|
|
|
path_url="/"
|
|
|
|
ynh_app_setting_set --app=$app --key=path_url --value=$path_url
|
|
|
|
fi
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2021-02-04 12:44:49 +01:00
|
|
|
if ynh_legacy_permissions_exists; then
|
|
|
|
ynh_legacy_permissions_delete_all
|
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2021-06-26 08:19:34 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=5
|
2019-08-04 23:00:10 +02:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_clean_check_starting
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-06-21 11:34:24 +02:00
|
|
|
|
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-06-26 10:55:07 +02:00
|
|
|
ynh_systemd_action --service_name="loolwsd" --action="stop" --log_path="systemd" --line_match="Stopped Collabora Online WebSocket Daemon"
|
2018-11-02 18:03:53 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-06-26 09:36:09 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
2018-11-02 18:03:53 +01:00
|
|
|
|
2021-06-26 08:19:34 +02:00
|
|
|
# Create a dedicated NGINX config
|
2018-11-02 18:03:53 +01:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
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-06-26 11:00:55 +02:00
|
|
|
ynh_add_config --template="../conf/loolwsd.xml" --destination="/etc/loolwsd/loolwsd.xml"
|
2021-08-06 10:09:07 +02:00
|
|
|
chown lool: "/etc/loolwsd/loolwsd.xml"
|
2020-04-16 01:21:50 +02:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#=================================================
|
2021-06-26 11:00:55 +02:00
|
|
|
# UPGRADE DEPENDENCIES
|
2018-11-02 18:03:53 +01:00
|
|
|
#=================================================
|
2021-06-26 11:00:55 +02:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=10
|
2018-11-02 18:03:53 +01:00
|
|
|
|
2021-06-26 11:00:55 +02:00
|
|
|
DEBIAN_VERSION_NUMBER=$(cat /etc/debian_version | head -n 1 | cut -f1 -d .)
|
|
|
|
ynh_install_extra_app_dependencies --repo="deb https://collaboraoffice.com/repos/CollaboraOnline/CODE-debian${DEBIAN_VERSION_NUMBER} ./ " --package="$pkg_dependencies" --key="https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x0C54D189F4BA284D" 2>/dev/null
|
2019-08-04 23:00:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-06-26 09:23:07 +02:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
|
|
|
|
2021-06-26 09:50:57 +02:00
|
|
|
yunohost service add "loolwsd" --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-01-09 23:59:37 +01:00
|
|
|
ynh_systemd_action --service_name="loolwsd" --action="restart" --log_path="systemd" --line_match="Ready to accept connections"
|
2019-08-04 23:00:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-06-26 08:19:34 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2019-08-04 23:00:10 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|