2020-10-14 12:53:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=7
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-03-05 22:53:01 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2020-10-14 12:53:53 +02:00
|
|
|
|
2023-03-05 22:53:01 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-05-27 17:16:06 +02:00
|
|
|
|
2020-10-14 12:53:53 +02:00
|
|
|
#=================================================
|
2023-04-03 12:46:34 +02:00
|
|
|
# SYSTEM CONFIGURATION
|
2020-10-14 12:53:53 +02:00
|
|
|
#=================================================
|
2023-04-03 12:46:34 +02:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2020-10-14 12:53:53 +02:00
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
2023-09-20 08:49:29 +02:00
|
|
|
ynh_add_fpm_config
|
2020-10-14 12:53:53 +02:00
|
|
|
|
2022-08-27 19:22:17 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2020-10-14 12:53:53 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-11-22 15:56:04 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|