2017-06-21 11:34:24 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-11-02 18:15:03 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_clean_setup () {
|
2019-08-04 23:00:10 +02:00
|
|
|
ynh_clean_check_starting
|
2018-11-02 18:15:03 +01:00
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
2017-06-21 11:34:24 +02:00
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2019-08-04 23:00:10 +02:00
|
|
|
path_url="/"
|
2017-11-11 16:35:49 +01:00
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
2019-08-04 23:00:10 +02:00
|
|
|
nextcloud_domain=$YNH_APP_ARG_NEXTCLOUD_DOMAIN
|
|
|
|
|
2018-11-03 10:16:37 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2018-11-02 18:15:03 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2020-12-18 22:44:52 +01:00
|
|
|
ynh_script_progression --message="Validating installation parameters..."
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2018-11-02 18:15:03 +01:00
|
|
|
# Register (book) web path
|
2019-08-04 23:00:10 +02:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2018-11-02 18:15:03 +01:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-12-18 22:44:52 +01:00
|
|
|
ynh_script_progression --message="Storing installation settings..."
|
2018-11-02 18:15:03 +01:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
|
|
|
ynh_app_setting_set --app=$app --key=password --value=$password
|
|
|
|
ynh_app_setting_set --app=$app --key=nextcloud_domain --value=$nextcloud_domain
|
2018-11-02 18:15:03 +01:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
2018-11-02 18:15:03 +01:00
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
2020-12-18 22:44:52 +01:00
|
|
|
ynh_script_progression --message="Configuring firewall..."
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2018-02-05 19:09:21 +01:00
|
|
|
# Find a free port
|
2019-08-04 23:00:10 +02:00
|
|
|
port=$(ynh_find_port --port=9980)
|
|
|
|
|
|
|
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
2017-06-21 11:34:24 +02:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-12-18 22:44:52 +01:00
|
|
|
ynh_script_progression --message="Installing dependencies..."
|
2019-08-04 23:00:10 +02:00
|
|
|
|
2020-07-01 18:16:38 +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"
|
2017-06-25 09:05:13 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-12-18 22:44:52 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..."
|
2017-06-25 09:05:13 +02:00
|
|
|
|
2020-09-22 16:57:16 +02:00
|
|
|
# Create a dedicated NGINX config
|
2017-08-22 19:27:56 +02:00
|
|
|
ynh_add_nginx_config
|
2017-06-25 09:05:13 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-08-04 23:00:10 +02:00
|
|
|
# SPECIFIC SETUP
|
2017-11-11 16:35:49 +01:00
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
config="/etc/loolwsd/loolwsd.xml"
|
|
|
|
|
|
|
|
cp -f ../conf/loolwsd.xml $config
|
|
|
|
|
2019-08-04 23:41:36 +02:00
|
|
|
ynh_replace_string --match_string="__NEXTCLOUD_DOMAIN__" --replace_string="$nextcloud_domain" --target_file="$config"
|
2019-08-04 23:00:10 +02:00
|
|
|
ynh_replace_string --match_string="__PASSWORD__" --replace_string="$password" --target_file="$config"
|
2018-11-02 18:15:03 +01:00
|
|
|
|
2017-06-25 09:05:13 +02:00
|
|
|
#=================================================
|
2018-11-02 18:15:03 +01:00
|
|
|
# STORE THE CONFIG FILE CHECKSUM
|
2017-06-25 09:05:13 +02:00
|
|
|
#=================================================
|
|
|
|
|
2018-11-02 18:15:03 +01:00
|
|
|
# Calculate and store the config file checksum into the app settings
|
|
|
|
ynh_store_file_checksum "/etc/loolwsd/loolwsd.xml"
|
2017-06-25 09:05:13 +02:00
|
|
|
|
2018-11-02 18:15:03 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2019-08-04 23:00:10 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2018-11-02 18:15:03 +01:00
|
|
|
#=================================================
|
2020-12-18 22:44:52 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2018-11-02 18:15:03 +01:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name="loolwsd" --action="start" --log_path="systemd" --line_match="Started LibreOffice Online WebSocket Daemon"
|
2018-11-02 18:15:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2020-12-18 22:44:52 +01:00
|
|
|
ynh_script_progression --message="Configuring SSOwat..."
|
2018-11-02 18:15:03 +01:00
|
|
|
|
2019-08-04 23:00:10 +02:00
|
|
|
# Make app public
|
2018-11-02 18:15:03 +01:00
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
|
|
|
ynh_app_setting_set $app unprotected_uris "/"
|
2017-06-21 11:34:24 +02:00
|
|
|
|
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
|
|
|
|
#=================================================
|
2017-08-22 19:27:56 +02:00
|
|
|
|
2020-12-18 22:44:52 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|