garage_ynh/scripts/backup

88 lines
3.0 KiB
Plaintext
Raw Normal View History

2014-11-04 09:47:50 +01:00
#!/bin/bash
2017-06-02 18:28:20 +02:00
#=================================================
2017-06-17 23:19:48 +02:00
# GENERIC START
2017-06-02 18:28:20 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2014-11-04 09:47:50 +01:00
2020-08-02 16:00:17 +02:00
# 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
2014-11-04 09:47:50 +01:00
2017-09-05 17:48:23 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2018-06-28 22:05:35 +02:00
ynh_clean_setup () {
### Remove this function if there's nothing to clean before calling the remove script.
true
}
2017-09-05 17:48:23 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-06-02 18:28:20 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
ynh_print_info --message="Loading installation settings..."
2017-06-02 18:28:20 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-04-16 00:32:39 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
2022-07-30 14:02:57 +02:00
port=$(ynh_app_setting_get --app=$app --key=port)
rpc_secret=$(ynh_app_setting_get --app=$app --key=rpc_secret)
port_api=$(ynh_app_setting_get --app=$app --key=port_api)
port_web=$(ynh_app_setting_get --app=$app --key=port_web)
2021-04-29 20:58:35 +02:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2022-07-30 14:02:57 +02:00
bootstrap_peers=$(ynh_app_setting_get --app=$app --key=bootstrap_peers)
2017-06-02 18:28:20 +02:00
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
2019-05-02 20:44:22 +02:00
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2020-05-30 14:34:15 +02:00
### N.B. : the following 'ynh_backup' calls are only a *declaration* of what needs
### to be backuped and not an actual copy of any file. The actual backup that
### creates and fill the archive with the files happens in the core after this
### script is called. Hence ynh_backups calls takes basically 0 seconds to run.
2017-06-02 18:28:20 +02:00
#=================================================
2017-06-17 23:19:48 +02:00
# BACKUP THE APP MAIN DIR
2017-06-02 18:28:20 +02:00
#=================================================
2019-04-16 00:32:39 +02:00
ynh_backup --src_path="$final_path"
2017-06-02 18:28:20 +02:00
2021-04-29 20:58:35 +02:00
#=================================================
# BACKUP THE DATA DIR
#=================================================
2022-10-06 09:46:45 +02:00
#ynh_backup --src_path="$datadir/data" --is_big
2021-04-29 20:58:35 +02:00
2017-06-02 18:28:20 +02:00
#=================================================
2017-06-17 23:19:48 +02:00
# BACKUP THE NGINX CONFIGURATION
2017-06-02 18:28:20 +02:00
#=================================================
2019-04-16 00:32:39 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2017-06-02 18:28:20 +02:00
2019-04-18 19:58:47 +02:00
2017-06-02 18:28:20 +02:00
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP LOGROTATE
#=================================================
2019-04-16 00:32:39 +02:00
ynh_backup --src_path="/etc/logrotate.d/$app"
2017-06-02 18:28:20 +02:00
#=================================================
# BACKUP SYSTEMD
#=================================================
2019-04-16 00:32:39 +02:00
ynh_backup --src_path="/etc/systemd/system/$app.service"
2017-06-02 18:28:20 +02:00
2019-02-10 15:02:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-05-07 19:34:39 +02:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."