2023-11-20 23:01:30 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2024-06-19 21:30:51 +02:00
|
|
|
# INITIALIZE AND STORE SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
email=$(ynh_user_get_info --username="$admin" --key="mail")
|
|
|
|
firstname=$(ynh_user_get_info --username="$admin" --key="firstname")
|
|
|
|
lastname=$(ynh_user_get_info --username="$admin" --key="lastname")
|
|
|
|
|
2023-11-20 23:01:30 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-06-10 09:03:17 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2023-11-20 23:01:30 +01:00
|
|
|
|
2024-06-19 21:30:51 +02:00
|
|
|
# FIXME: use --full_replace=1
|
|
|
|
ynh_secure_remove --file="$install_dir/vendor"
|
2023-11-20 23:09:07 +01:00
|
|
|
|
2024-06-19 21:30:51 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep=".env" #--full_replace=1
|
2023-11-20 23:01:30 +01:00
|
|
|
|
2023-11-20 23:36:32 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-06-19 21:30:51 +02:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2023-11-20 23:01:30 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FINAL FREESCOUT INSTALL
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Install $app" --weight=5
|
|
|
|
|
2024-06-19 21:30:51 +02:00
|
|
|
pushd "$install_dir"
|
|
|
|
"php$phpversion" artisan freescout:clear-cache
|
|
|
|
"php$phpversion" artisan migrate --no-interaction --force
|
2023-11-20 23:01:30 +01:00
|
|
|
popd
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|