mirror of
https://github.com/YunoHost-Apps/freescout_ynh.git
synced 2024-09-03 18:36:23 +02:00
73 lines
2.3 KiB
Bash
Executable file
73 lines
2.3 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
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)
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
#=================================================
|
|
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
then
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
|
|
|
ynh_secure_remove --file="/$install_dir/vendor"
|
|
|
|
# Download, check integrity, uncompress and patch the source from manifest.toml
|
|
ynh_setup_source --dest_dir="$install_dir" #--keep='.env'
|
|
fi
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
#=================================================
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
#=================================================
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
|
|
|
ynh_add_fpm_config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
#=================================================
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
|
#=================================================
|
|
# UPDATE A CONFIG FILE
|
|
#=================================================
|
|
#ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
#ynh_add_config --template=".env.example" --destination="$install_dir/.env"
|
|
|
|
#chmod 400 "$install_dir/.env"
|
|
#chown $app:$app "$install_dir/.env"
|
|
|
|
#=================================================
|
|
# FINAL FREESCOUT INSTALL
|
|
#=================================================
|
|
ynh_script_progression --message="Install $app" --weight=5
|
|
|
|
pushd $install_dir
|
|
php$phpversion artisan freescout:clear-cache
|
|
php$phpversion artisan migrate --no-interaction --force
|
|
popd
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|