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

65 lines
2.1 KiB
Text
Raw Permalink Normal View History

2015-03-07 13:58:05 +01:00
#!/bin/bash
2021-06-28 10:15:06 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-06-26 08:42:17 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=5
2021-06-28 10:15:06 +02:00
2024-06-26 08:42:17 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --keep="config.php images/ files/ store/"
2015-03-07 13:58:05 +01:00
2023-05-23 10:14:37 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-06-28 10:15:06 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-06-28 10:57:39 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=3
2021-06-28 10:15:06 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
# Create a dedicated PHP-FPM config
2024-06-26 08:42:17 +02:00
ynh_add_fpm_config
2021-06-28 10:15:06 +02:00
2021-06-28 17:25:52 +02:00
#=================================================
2022-03-10 01:03:56 +01:00
# SPECIFIC UPGRADE
#=================================================
# UPGRADE APP
2021-06-28 17:25:52 +02:00
#=================================================
2021-12-01 16:33:34 +01:00
ynh_script_progression --message="Upgrading the $app..." --weight=1
2021-06-28 17:25:52 +02:00
2023-05-23 10:14:37 +02:00
ynh_exec_as $app php${phpversion} "$install_dir/bin/phpbbcli.php" --no-interaction db:migrate --safe-mode
2021-06-28 17:25:52 +02:00
2023-05-23 10:14:37 +02:00
if [ -e "$install_dir/install_old" ]; then
2023-05-23 10:24:50 +02:00
ynh_secure_remove --file="$install_dir/install_old"
2022-07-25 21:02:57 +02:00
fi
2023-05-23 10:14:37 +02:00
if [ -e "$install_dir/install" ]; then
ynh_exec_as $app mv "$install_dir/install" "$install_dir/install_old"
2021-06-28 17:25:52 +02:00
fi
2021-06-28 17:26:43 +02:00
#=================================================
2021-11-06 16:11:05 +01:00
# SETUP A CRON
2021-06-28 17:26:43 +02:00
#=================================================
2021-11-06 16:11:05 +01:00
ynh_script_progression --message="Setuping a cron..." --weight=1
2021-06-28 17:26:43 +02:00
2021-11-06 16:11:05 +01:00
ynh_add_config --template="../conf/phpbb.cron" --destination="/etc/cron.d/$app"
2021-11-16 22:42:37 +01:00
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2021-06-28 17:26:43 +02:00
2021-06-28 10:15:06 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2015-03-07 13:58:05 +01:00
2021-06-28 10:57:39 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last