1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/webtrees_ynh.git synced 2024-09-03 18:26:37 +02:00
webtrees_ynh/scripts/upgrade

62 lines
1.7 KiB
Text
Raw Normal View History

2017-07-02 12:41:05 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-07-02 12:41:05 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2021-11-19 15:03:11 +01:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# 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..."
2021-11-19 15:03:11 +01:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..."
# Move old app dir
#mv ${install_dir} ${install_dir}.old
2021-11-19 15:03:11 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir=$install_dir --keep="data modules_v4"
# restore data
#cp -a ${install_dir}.old/data ${install_dir}
# delete temp directory
#ynh_secure_remove --file=${install_dir}.old
2021-11-19 15:03:11 +01:00
fi
2017-07-02 12:41:05 +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
ynh_add_nginx_config
2020-10-16 11:21:00 +02:00
# Create a dedicated PHP-FPM config
2023-11-08 09:30:30 +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