2017-07-02 12:41:05 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-07-02 12:41:05 +02:00
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-07-05 12:28:42 +02:00
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
2019-04-06 20:29:15 +02:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
2017-07-03 21:21:48 +02:00
|
|
|
|
2024-06-17 22:22:44 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir=$install_dir --keep="data modules_v4"
|
2017-07-02 12:41:05 +02:00
|
|
|
|
2023-06-08 08:57:09 +02:00
|
|
|
chmod -R 700 $install_dir/data
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2017-07-02 12:41:05 +02:00
|
|
|
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..."
|
2019-04-06 20:29:15 +02:00
|
|
|
|
2020-10-16 11:21:00 +02:00
|
|
|
# Create a dedicated NGINX config
|
2017-08-01 12:01:23 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2020-10-16 11:21:00 +02:00
|
|
|
# Create a dedicated PHP-FPM config
|
2023-11-08 10:08:42 +01:00
|
|
|
ynh_add_fpm_config
|
2019-04-06 20:29:15 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|