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

49 lines
1.5 KiB
Text
Raw Normal View History

2020-05-04 19:15:22 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
upgrade_type=$(ynh_check_app_version_changed)
2023-03-10 22:48:26 +01:00
#=================================================
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD, ETC...)
2020-05-04 19:15:22 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2023-03-10 22:48:26 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2020-05-04 19:15:22 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-03-10 22:48:26 +01:00
ynh_setup_source --dest_dir="$install_dir"
2020-05-04 19:15:22 +02:00
fi
2023-03-10 22:48:26 +01:00
chown -R $app:www-data "$install_dir"
find "$install_dir" -type f -exec chmod 640 {} \;
find "$install_dir" -type d -exec chmod 750 {} \;
find "$install_dir" -type d -exec chmod +s {} \;
2020-05-04 19:15:22 +02:00
#=================================================
2023-03-10 22:48:26 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2020-05-04 19:15:22 +02:00
#=================================================
2023-03-10 22:48:26 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2020-05-04 19:15:22 +02:00
2023-03-19 09:50:39 +01:00
ynh_add_fpm_config --usage=low --footprint=low
2020-05-04 19:15:22 +02:00
2023-03-10 22:48:26 +01:00
ynh_add_nginx_config
2020-05-04 19:15:22 +02:00
2023-03-10 22:48:26 +01:00
ynh_use_logrotate --non-append
2020-05-04 19:15:22 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2023-03-10 22:48:26 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last