2022-10-18 22:53:40 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2023-01-06 12:44:23 +01:00
|
|
|
fpm_footprint="low"
|
|
|
|
fpm_free_footprint=0
|
|
|
|
fpm_usage="low"
|
|
|
|
|
2022-10-18 22:53:40 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2023-12-20 08:45:01 +01:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
2022-10-18 22:53:40 +02:00
|
|
|
|
2023-01-06 12:44:23 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
|
2022-10-18 22:53:40 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2022-10-18 23:26:12 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=3
|
2022-10-18 22:53:40 +02:00
|
|
|
|
2023-12-20 08:37:37 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2022-10-18 22:53:40 +02:00
|
|
|
|
2023-12-20 08:37:37 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-10-18 22:53:40 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2022-10-18 23:26:12 +02:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=3
|
2022-10-18 22:53:40 +02:00
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
2023-01-06 12:44:23 +01:00
|
|
|
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint
|
2022-10-18 22:53:40 +02:00
|
|
|
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|