1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yellow_ynh.git synced 2024-09-03 20:36:12 +02:00
yellow_ynh/scripts/restore

48 lines
1.6 KiB
Text
Raw Permalink Normal View History

2020-11-02 12:24:37 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
2021-06-04 21:37:11 +02:00
# RESTORE THE APP MAIN DIR
2020-11-02 12:24:37 +01:00
#=================================================
2021-06-04 21:37:11 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=2
ynh_restore_file --origin_path="$install_dir"
2020-11-02 12:24:37 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2020-11-02 12:24:37 +01:00
2023-11-23 09:47:20 +01:00
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
2023-11-23 09:47:20 +01:00
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
Testing (#28) * upgrade to 0.8.16 * Fix * Add scripts * Fix * Update install * Fix * Fix * fix * Update nginx.conf * permissions * fix * Update nginx.conf * fix * rework nginx conf * fix * Add extensions * Update nginx.conf * Update manifest.json * Update change_url * Small fixes * Update manifest.json * Update manifest.json * remove plugins * Update README.md * Use SVG badge * Fix * Update upgrade * Update install * Update manifest.json * Update manifest.json * Upgrade to 0.8.17 * Update app.src * Update app.src * Update app.src * Fix * Fix badges * Fix * [autopatch] Update issue and PR templates (#12) Co-authored-by: Yunohost-Bot <> * Add templates * Cleaning up (#13) * Update app.src * New version (#15) * new version * Auto-update README * Fix Co-authored-by: Yunohost-Bot <> * Update restore * Create updater.yml * Create upgrade.sh * Update upgrade.sh * Fix * Update updater.sh * Fix * Update updater.sh * Update manifest.json * Auto-update README * 0.8.18 (#19) * 0.8.18 * 4.3 (#21) * 4.3 * 0.8.20 (#23) * 0.8.20 * Auto-update README * Update check_process Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Upgrade to upstream * Auto-update README * Bullseye (#27) * Auto-update README * Fix upgrade content * Auto-update README * Update upgrade Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Auto-update README * Update manifest.json Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2022-08-25 13:52:23 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2020-11-02 12:24:37 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=2
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app" --last