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

141 lines
4.9 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
#=================================================
# LOAD SETTINGS
#=================================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --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
#=================================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --message="Ensuring downward compatibility..."
2019-08-04 23:00:10 +02:00
# 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
#=================================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
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
#=================================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --message="Stopping a systemd service..."
2019-08-04 23:00:10 +02:00
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
#=================================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --message="Upgrading nginx web server configuration..."
2018-11-02 18:03:53 +01:00
# Create a dedicated nginx config
ynh_add_nginx_config
2020-04-16 01:21:50 +02:00
#===============================================
# ADD COLLABORA REPOSITORY
#===============================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --message="Add Collabora repository..."
2020-04-16 01:21:50 +02:00
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0C54D189F4BA284D
DEBIAN_VERSION_NUMBER=$(cat /etc/debian_version | head -n 1 | cut -f1 -d .)
echo "deb https://collaboraoffice.com/repos/CollaboraOnline/CODE-debian${DEBIAN_VERSION_NUMBER} ./" | tee -a /etc/apt/sources.list.d/collabora.list
2019-08-04 23:00:10 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --message="Upgrading dependencies..."
2018-11-02 18:03:53 +01:00
2020-04-16 01:21:50 +02:00
ynh_install_app_dependencies $pkg_dependencies
2019-08-04 23:00:10 +02:00
#=================================================
# 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
#=================================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --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
#=================================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --message="Starting a systemd service..."
2019-08-04 23:00:10 +02:00
2019-08-05 00:03:27 +02:00
ynh_systemd_action --service_name="loolwsd" --action="restart" --log_path="systemd" --line_match="Started LibreOffice Online WebSocket Daemon"
2019-08-04 23:00:10 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-12-18 22:44:52 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
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
2020-12-18 22:44:52 +01:00
ynh_script_progression --message="Upgrade of $app completed"