2021-08-13 15:48:24 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_script_progression "Upgrading source files..."
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2024-07-07 15:23:24 +03:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep="config.php storage/"
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2023-03-29 20:23:48 +03:00
|
|
|
chmod -R 770 "$install_dir/storage"
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2024-08-14 14:42:44 +03:00
|
|
|
pushd "$install_dir"
|
2024-08-30 23:50:56 +03:00
|
|
|
php$php_version $install_dir/index.php console migrate
|
2024-08-14 14:42:44 +03:00
|
|
|
popd
|
|
|
|
|
2021-08-13 15:48:24 +03:00
|
|
|
#=================================================
|
2023-09-10 10:02:49 +03:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2021-08-13 15:48:24 +03:00
|
|
|
#=================================================
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_script_progression "Upgrading system configurations related to $app..."
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_config_add_nginx
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_config_add_phpfpm
|
2021-08-13 15:48:24 +03:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_script_progression "Upgrade of $app completed"
|