1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/grocy_ynh.git synced 2024-09-03 19:25:54 +02:00
grocy_ynh/scripts/restore
Éric Gaspar afd8f97af6
Testing (#49)
* Upgrade to v.3.0.0

* Fix

* Fix

* Add README_fr

* Fix

* Update nginx.conf

* Fix

* Update manifest.json

* Update upgrade

* Update upgrade

* Remove service

* Update upgrade

* Update config-dist.php

* Remove path

* Update README_fr.md

* Update README_fr.md

* Upgrade to 3.0.1 (#4)

* Upgrade to 3.0.1

* 3.0.1 (#7)

* Upgrade to 3.0.1

* Update manifest.json

* add pull request

* Cleaning up

* Update manifest.json

* Cleaning up

* Fix

* Fix path

* Fix

* Fix permissions

* [autopatch] Update issue and PR templates (#11)

* Testing (#9)

* Cleaning up

* [autopatch] Update issue and PR templates

Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com>
Co-authored-by: Yunohost-Bot <>

* Fix

* [autopatch] Update issue and PR templates (#12)

* Testing (#9)

* Cleaning up

* [autopatch] Update issue and PR templates

Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com>
Co-authored-by: Yunohost-Bot <>

* Add headers (#13)

* Cleaning up

* Update manifest.json

* 3.1.0 (#15)

* 3.1.0

* Fix

* Auto-update README

* Fix

* Auto-update README

* Set client_max_body_size to 50M

* Update manifest.json

* Auto-update README

* Update manifest.json

* 3.1.1

* Auto-update README

* Fix

* Update manifest.json

* Upgrade 3.1.2 (#20)

* Auto-update README

* Add mbstring

* Update manifest.json

* Auto-update README

* 3.1.3 (#24)

* 3.1.3

* Allow api (#27)

* Allow API

* Update upgrade

* Update scripts/upgrade

Co-authored-by: tituspijean <tituspijean@outlook.com>

Co-authored-by: tituspijean <tituspijean@outlook.com>

* Update manifest.json

* Auto-update README

* remove https

* Update DESCRIPTION.md

* Auto-update README

* Add config panel

* Ericgaspar patch 1 (#30)

* Testing (#28)

* Allow API

* Create updater.yml

* Auto-update README

* Update upgrade

* Fix

* Auto-update README

* version bump

* Auto-update README

* 3.2.0

* Auto-update README

* Update manifest.json

* Update manifest.json

* Upgrade to v3.2.0 (#36)

Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com>

* Update nginx.conf

* 3.3.0

* Auto-update README

* Update _common.sh

* Update upgrade

* Update config-dist.php

* Update nginx.conf

* Update check_process

* Update _common.sh

* 3.3.1

* Auto-update README

* Auto-update README

* Update manifest.json

* Update upgrade

* Update upgrade

* Update manifest.json

* Auto-update README

* 3.3.2

* Auto-update README

* add PHP

* fix

* Update manifest.json

* Auto-update README

* Upgrade auto-updater (#47)

* [autopatch] Upgrade auto-updater

* Auto-update README

---------

Co-authored-by: tituspijean <titus@pijean.ovh>

* Version 2 (#48)

* v2

* v2

* Auto-update README

* Update tests.toml

* Delete check_process

* Update upgrade

---------

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* Update manifest.toml

* Auto-update README

---------

Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com>
Co-authored-by: Yunohost-Bot <>
Co-authored-by: tituspijean <tituspijean@outlook.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
Co-authored-by: yalh76 <yalh@yahoo.com>
Co-authored-by: tituspijean <titus@pijean.ovh>
2023-03-23 15:26:20 +01:00

54 lines
2 KiB
Bash

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression --message="Restoring $app main directory..." --weight=5
ynh_restore_file --origin_path="$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring PHP-FPM configuration..." --weight=1
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
# Recreate a dedicated php-fpm config
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint --phpversion=$phpversion
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=1
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