1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/diagramsnet_ynh.git synced 2024-09-03 18:26:33 +02:00
diagramsnet_ynh/scripts/install

30 lines
999 B
Text
Raw Normal View History

2020-03-11 00:07:10 +01:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
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
#=================================================
ynh_script_progression "Configuring NGINX web server..."
2020-03-11 00:07:10 +01:00
ynh_config_add_nginx
2020-03-11 00:07:10 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Installation of $app completed"