1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jenkins_ynh.git synced 2024-09-03 19:26:18 +02:00
jenkins_ynh/scripts/backup

63 lines
2 KiB
Text
Raw Normal View History

2016-11-30 17:49:37 +01:00
#!/bin/bash
2017-03-19 18:28:38 +01:00
#=================================================
# GENERIC START
2017-03-19 18:28:38 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-02-25 23:05:04 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2018-07-13 17:33:05 +02:00
source ../settings/scripts/_common.sh
2016-11-30 17:49:37 +01:00
source /usr/share/yunohost/helpers
2017-03-19 18:28:38 +01:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2017-12-16 23:20:29 +01:00
ynh_clean_check_starting
}
2021-02-25 23:05:04 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-03-19 18:28:38 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2020-12-03 18:24:29 +01:00
ynh_print_info --message="Loading installation settings..."
2017-03-19 18:28:38 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-05-28 00:28:01 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
2016-11-30 17:49:37 +01:00
2017-03-19 18:28:38 +01:00
#=================================================
2020-12-03 18:24:29 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2017-03-19 18:28:38 +01:00
#=================================================
2019-01-13 17:49:15 +01:00
# BACKUP THE APP MAIN DIR
2017-03-19 18:28:38 +01:00
#=================================================
2021-08-14 16:53:00 +02:00
ynh_backup --src_path="$final_path" --not_mandatory
2016-11-30 17:49:37 +01:00
2017-03-19 18:28:38 +01:00
#=================================================
2019-01-13 17:49:15 +01:00
# BACKUP THE NGINX CONFIGURATION
2017-03-19 18:28:38 +01:00
#=================================================
2016-11-30 17:49:37 +01:00
2019-05-28 00:28:01 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2016-11-30 17:49:37 +01:00
2017-03-19 18:28:38 +01:00
#=================================================
# SPECIFIC BACKUP
#=================================================
2021-08-14 16:53:00 +02:00
# BACKUP VARIOUS FILES
2017-03-19 18:28:38 +01:00
#=================================================
2016-11-30 17:49:37 +01:00
2021-08-14 16:53:00 +02:00
ynh_backup --src_path="/etc/default/$app"
2019-01-30 15:56:18 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-12-03 18:24:29 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."