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
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Loading installation settings..."
|
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
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Ensuring downward compatibility..."
|
|
|
|
|
|
|
|
# Fix is_public as a boolean value
|
|
|
|
if [ "$is_public" = "Yes" ]; then
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=1
|
|
|
|
is_public=1
|
|
|
|
elif [ "$is_public" = "No" ]; then
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=0
|
|
|
|
is_public=0
|
|
|
|
fi
|
2017-06-21 11:34:24 +02:00
|
|
|
|
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
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Backing up the app before upgrading (may take a while)..."
|
|
|
|
|
|
|
|
# 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
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Stopping a systemd service..."
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name="loolwsd" --action="stop" --log_path="systemd" --line_match="Stopped LibreOffice Online WebSocket Daemon."
|
2018-11-02 18:03:53 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-08-04 23:00:10 +02:00
|
|
|
ynh_print_info --message="Upgrading nginx web server configuration..."
|
2018-11-02 18:03:53 +01:00
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Upgrading dependencies..."
|
2018-11-02 18:03:53 +01:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
ynh_package_update
|
|
|
|
ynh_install_app_dependencies loolwsd code-brand
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
2018-11-02 18:03:53 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE CONFIG
|
|
|
|
#=================================================
|
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
config="/etc/loolwsd/loolwsd.xml"
|
2018-11-02 18:03:53 +01:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
ynh_backup_if_checksum_is_different --file="$config"
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2019-08-04 23:41:36 +02:00
|
|
|
cp -f ../conf/loolwsd.xml $config
|
2019-08-04 23:00:10 +02:00
|
|
|
|
2019-08-04 23:41:36 +02:00
|
|
|
ynh_replace_string "__NEXTCLOUD_DOMAIN__" "$nextcloud_domain" "$config"
|
2019-08-04 23:00:10 +02:00
|
|
|
ynh_replace_string "__PASSWORD__" "$password" "$config"
|
|
|
|
|
|
|
|
# Recalculate and store the checksum of the file for the next upgrade.
|
|
|
|
ynh_store_file_checksum --file="$config"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Upgrading SSOwat configuration..."
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
# Make app public
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway
|
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Starting a systemd service..."
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name="loolwsd" --action="start" --log_path="systemd" --line_match="Started LibreOffice Online WebSocket Daemon"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Reloading nginx web server..."
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2018-11-02 18:03:53 +01:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
ynh_print_info --message="Upgrade of $app completed"
|