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

85 lines
2.5 KiB
Text
Raw Normal View History

2015-11-03 23:22:02 +01:00
#!/bin/bash
2018-02-27 22:35:57 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-11-11 14:14:26 +01:00
2021-07-22 15:51:13 +02:00
timezone="$(cat /etc/timezone)"
2021-01-05 23:31:12 +01:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-07-22 15:51:13 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-04-13 20:36:45 +02:00
ynh_script_progression --message="Upgrading source files..."
2021-07-22 15:51:13 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-11-11 14:01:42 +01:00
mv "$install_dir" "$install_dir.old"
2018-05-20 15:49:02 +02:00
2023-11-11 14:01:42 +01:00
ynh_setup_source --dest_dir="$install_dir"
2018-05-20 15:49:02 +02:00
2021-07-22 15:51:13 +02:00
# when running automatic tests, there is no config.inc.php
2023-11-11 14:01:42 +01:00
if [ -e "$install_dir.old/galette/config/config.inc.php" ]; then
cp "$install_dir.old/galette/config/config.inc.php" "$install_dir/galette/config/config.inc.php"
cp -r "$install_dir.old/galette/data" "$install_dir/galette/data"
cp -r "$install_dir.old/galette/plugins" "$install_dir/galette/plugins"
2021-07-22 15:51:13 +02:00
fi
2018-05-20 15:49:02 +02:00
2021-07-22 15:51:13 +02:00
# delete temp directory
2023-11-11 14:01:42 +01:00
#REMOVEME? ynh_secure_remove "$install_dir.old"
2021-07-22 15:51:13 +02:00
fi
2023-11-11 14:01:42 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-07-23 07:46:48 +02:00
2019-09-25 22:51:37 +02:00
#=================================================
2021-01-05 23:31:12 +01:00
# PHP-FPM CONFIGURATION
2019-09-25 22:51:37 +02:00
#=================================================
2021-01-05 23:31:12 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=2
2019-09-25 22:51:37 +02:00
2021-01-05 23:31:12 +01:00
# Create a dedicated PHP-FPM config
2021-11-14 15:32:27 +01:00
ynh_add_fpm_config
2019-09-25 22:51:37 +02:00
2022-06-26 14:53:49 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2023-11-11 14:14:26 +01:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# SPECIFIC UPGRADE
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2023-11-11 14:01:42 +01:00
chown "$app" "$install_dir/galette/config"
chmod 750 "$install_dir/galette/config"
for folder in attachments cache exports files imports logs photos templates_c tempimages
do
2023-11-11 14:01:42 +01:00
chown "$app" "$install_dir/galette/data/$folder"
chmod 775 "$install_dir/galette/data/$folder"
done
2021-01-05 23:31:12 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last