1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/diagramsnet_ynh.git synced 2024-09-03 18:26:33 +02:00
diagramsnet_ynh/scripts/backup
Gofannon 9e0c1be11d
Upgrade to version 14.4.0 (#13)
* Upgrade to version 12.9.3

* Update README.md

Small update on the link's demo. We don't know how long they gonna redirect draw.io to app.diagrams.net

* Remove commented code unused

* Force http parameter to disable 3rds parties

* fix quotting

* Documentation

* Upgrade version to 12.9.7

* Update README.md (#9)

* Upgrade to upstream 13.2.5

* V.14.1.1 (#10)

* Testing (#8)

* Upgrade to version 12.9.3

* Update README.md

Small update on the link's demo. We don't know how long they gonna redirect draw.io to app.diagrams.net

* Remove commented code unused

* Force http parameter to disable 3rds parties

* fix quotting

* Documentation

* Upgrade version to 12.9.7

* Update README.md (#9)

Co-authored-by: quentin-abiterra <49190209+quentin-abiterra@users.noreply.github.com>
Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com>

* Upgrade to upstream version

Co-authored-by: Gofannon <17145502+Gofannon@users.noreply.github.com>
Co-authored-by: quentin-abiterra <49190209+quentin-abiterra@users.noreply.github.com>

* Upgrade to upstream v14.4.0 (#12)

Co-authored-by: quentin-abiterra <49190209+quentin-abiterra@users.noreply.github.com>
Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com>
2021-02-26 18:44:22 +01:00

55 lines
1.8 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
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
### Remove this function if there's nothing to clean before calling the remove script.
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
ynh_print_info --message="Loading installation settings..."
app=$YNH_APP_INSTANCE_NAME
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
ynh_backup --src_path="$final_path"
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."