1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freescout_ynh.git synced 2024-09-03 18:36:23 +02:00
This commit is contained in:
Éric Gaspar 2023-11-20 23:09:07 +01:00
parent 55a3e7feed
commit 95814f4e6f
2 changed files with 7 additions and 9 deletions

View file

@ -39,7 +39,6 @@ ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
ynh_backup --src_path="/etc/cron.d/$app"
#=================================================
# BACKUP THE MYSQL DATABASE
#=================================================

View file

@ -26,8 +26,10 @@ 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'
ynh_setup_source --dest_dir="$install_dir" #--keep='.env'
fi
chown -R $app:www-data "$install_dir"
@ -46,12 +48,12 @@ ynh_add_nginx_config
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
#ynh_script_progression --message="Updating a configuration file..." --weight=1
ynh_add_config --template=".env.example" --destination="$install_dir/.env"
#ynh_add_config --template=".env.example" --destination="$install_dir/.env"
chmod 400 "$install_dir/.env"
chown $app:$app "$install_dir/.env"
#chmod 400 "$install_dir/.env"
#chown $app:$app "$install_dir/.env"
#=================================================
# FINAL FREESCOUT INSTALL
@ -59,11 +61,8 @@ chown $app:$app "$install_dir/.env"
ynh_script_progression --message="Install $app" --weight=5
pushd $install_dir
php$phpversion artisan key:generate --no-interaction --force
php$phpversion artisan freescout:clear-cache
php$phpversion artisan storage:link
php$phpversion artisan migrate --no-interaction --force
php$phpversion artisan freescout:create-user --role=admin --firstName="$firstname" --lastName="$lastname" --email="$email" --password="$password" --no-interaction
popd
#=================================================