2015-01-05 16:31:39 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-05-24 04:21:43 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-09-03 01:55:45 +02:00
|
|
|
|
2019-05-24 04:21:43 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-05-24 11:23:08 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=3
|
2019-05-24 04:21:43 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-04-05 19:47:48 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2019-05-24 04:21:43 +02:00
|
|
|
|
2023-04-05 19:47:48 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-09-12 13:03:11 +02:00
|
|
|
|
2019-05-24 04:21:43 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-13 19:04:02 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=3
|
2019-05-24 04:21:43 +02:00
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
2023-09-22 19:47:20 +02:00
|
|
|
ynh_add_fpm_config
|
2019-05-24 04:21:43 +02:00
|
|
|
|
2022-10-20 19:14:21 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2019-05-24 04:21:43 +02:00
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2021-09-12 13:03:11 +02:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2019-05-24 04:21:43 +02:00
|
|
|
|
2023-04-05 19:47:48 +02:00
|
|
|
ynh_add_config --template="../conf/config.php.example" --destination="$install_dir/config/config.php"
|
2023-10-09 20:44:51 +02:00
|
|
|
|
|
|
|
chmod 644 "$install_dir/config/config.php"
|
|
|
|
chown $app:$app "$install_dir/config/config.php"
|
2019-05-24 04:21:43 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-24 11:23:08 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|