2017-06-21 11:34:24 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_clean_setup () {
|
|
|
|
ynh_clean_check_starting
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-06-26 08:19:34 +02:00
|
|
|
ynh_script_progression --message="Loading 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)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2021-06-26 10:32:42 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the configuration..." --weight=3
|
|
|
|
|
2021-12-21 09:45:57 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/coolwsd/coolwsd.xml"
|
|
|
|
chmod 640 "/etc/coolwsd/coolwsd.xml"
|
2021-06-26 10:32:42 +02:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2021-06-26 08:19:34 +02:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=10
|
2019-08-04 23:00:10 +02:00
|
|
|
|
2021-01-02 19:34:29 +01:00
|
|
|
DEBIAN_VERSION_NUMBER=$(cat /etc/debian_version | head -n 1 | cut -f1 -d .)
|
2021-06-26 10:55:07 +02:00
|
|
|
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-12-21 09:45:57 +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-08-06 13:58:29 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2019-08-04 23:00:10 +02:00
|
|
|
|
2021-12-21 09:45:57 +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
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-06-26 08:19:34 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
|
2019-08-04 23:00:10 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2021-06-26 08:19:34 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|