2016-11-30 17:49:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-19 18:28:38 +01:00
|
|
|
#=================================================
|
2017-09-05 00:20:40 +02: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
|
|
|
|
2017-09-05 00:20:40 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_clean_setup () {
|
2017-12-16 23:20:29 +01:00
|
|
|
ynh_clean_check_starting
|
2017-09-05 00:20:40 +02:00
|
|
|
}
|
2021-02-25 23:05:04 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
2017-09-05 00:20:40 +02:00
|
|
|
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
|
|
|
|
2022-03-08 20:24:29 +01:00
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
|
2022-05-22 14:58:59 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
|
2022-03-08 20:24:29 +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
|
2022-03-08 20:24:29 +01:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
|
2022-05-22 14:58:59 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="restart" --line_match="Started Jenkins Continuous Integration Server" --log_path="systemd"
|
2022-03-08 20:24:29 +01:00
|
|
|
|
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)."
|