2020-03-11 00:07:10 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-08-30 22:47:44 +02:00
|
|
|
ynh_script_progression "Setting up source files..."
|
2020-03-11 00:07:10 +01:00
|
|
|
|
2023-06-23 09:43:13 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2020-03-11 00:07:10 +01:00
|
|
|
|
2022-09-26 02:34:37 +02:00
|
|
|
# Add "offline" parameter in index.html
|
|
|
|
# See https://desk.draw.io/support/solutions/articles/16000042546-what-url-parameters-are-supported-
|
|
|
|
sed_pattern="s/var params = window.location.search.slice(1).split('&');/&\n\t\t\tparams.push(\"offline=1\");/g"
|
2023-06-23 09:43:13 +02:00
|
|
|
sed -i "$sed_pattern" "$install_dir/src/main/webapp/index.html"
|
2022-09-26 02:34:37 +02:00
|
|
|
|
2020-03-11 00:07:10 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2024-08-30 22:47:44 +02:00
|
|
|
ynh_script_progression "Configuring NGINX web server..."
|
2020-03-11 00:07:10 +01:00
|
|
|
|
2024-08-30 22:47:44 +02:00
|
|
|
ynh_config_add_nginx
|
2020-03-11 00:07:10 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-30 22:47:44 +02:00
|
|
|
ynh_script_progression "Installation of $app completed"
|