2022-03-17 23:50:38 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2022-03-19 09:03:46 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2022-03-17 23:50:38 +01:00
|
|
|
|
2023-05-01 17:49:57 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2022-03-17 23:50:38 +01:00
|
|
|
|
2023-05-01 17:49:57 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-03-17 23:50:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
2023-01-10 18:36:13 +01:00
|
|
|
# PHP-FPM CONFIGURATION
|
2022-03-17 23:50:38 +01:00
|
|
|
#=================================================
|
2023-01-10 18:36:13 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
|
2022-03-17 23:50:38 +01:00
|
|
|
|
2023-11-22 17:23:20 +01:00
|
|
|
ynh_add_fpm_config
|
2022-03-17 23:50:38 +01:00
|
|
|
|
2023-01-10 18:36:13 +01:00
|
|
|
ynh_add_nginx_config
|
2022-03-17 23:50:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-19 09:03:46 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|