2014-10-20 18:55:53 +02:00
|
|
|
#!/bin/bash
|
2015-10-27 16:03:21 +01:00
|
|
|
|
2020-11-05 19:36:33 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-11-05 20:47:23 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-11-05 21:05:43 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=3
|
2020-11-05 20:47:23 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-11-10 13:50:40 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2020-11-05 20:47:23 +01:00
|
|
|
|
2023-11-10 13:50:40 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-10-02 10:28:48 +02:00
|
|
|
|
2020-11-05 20:59:46 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-05 21:05:43 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
2020-11-05 19:36:33 +01:00
|
|
|
|
2020-11-05 20:59:46 +01:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2020-11-05 20:47:23 +01:00
|
|
|
|
2020-11-05 19:36:33 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-05 21:05:02 +01:00
|
|
|
ynh_script_progression --message="Installation of Laverna completed" --last
|