2014-11-04 08:47:50 +00:00
|
|
|
#!/bin/bash
|
2015-10-27 15:03:21 +00:00
|
|
|
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
2017-06-17 21:19:48 +00:00
|
|
|
# GENERIC START
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2014-11-04 08:47:50 +00:00
|
|
|
|
2020-08-02 14:00:17 +00:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2018-07-16 22:02:52 +00:00
|
|
|
source ../settings/scripts/_common.sh
|
2016-06-14 12:11:00 +00:00
|
|
|
source /usr/share/yunohost/helpers
|
2014-11-04 08:47:50 +00:00
|
|
|
|
2017-09-05 15:48:23 +00:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2018-06-28 20:05:35 +00:00
|
|
|
ynh_clean_setup () {
|
|
|
|
### Remove this function if there's nothing to clean before calling the remove script.
|
|
|
|
true
|
|
|
|
}
|
2017-09-05 15:48:23 +00:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-05-07 00:23:17 +00:00
|
|
|
ynh_print_info --message="Loading installation settings..."
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-04-15 22:32:39 +00:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
2022-07-30 12:02:57 +00: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 18:58:35 +00:00
|
|
|
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
|
2022-07-30 12:02:57 +00:00
|
|
|
bootstrap_peers=$(ynh_app_setting_get --app=$app --key=bootstrap_peers)
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
#=================================================
|
2020-05-07 00:23:17 +00:00
|
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
2019-05-02 18:44:22 +00:00
|
|
|
#=================================================
|
2020-05-25 16:50:37 +00:00
|
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
2020-05-07 00:23:17 +00:00
|
|
|
|
2020-05-30 12:34:15 +00: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.
|
2020-05-07 00:23:17 +00:00
|
|
|
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
2017-06-17 21:19:48 +00:00
|
|
|
# BACKUP THE APP MAIN DIR
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
|
|
|
|
2019-04-15 22:32:39 +00:00
|
|
|
ynh_backup --src_path="$final_path"
|
2017-06-02 16:28:20 +00:00
|
|
|
|
2021-04-29 18:58:35 +00:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE DATA DIR
|
|
|
|
#=================================================
|
|
|
|
|
2022-10-06 07:46:45 +00:00
|
|
|
#ynh_backup --src_path="$datadir/data" --is_big
|
2021-04-29 18:58:35 +00:00
|
|
|
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
2017-06-17 21:19:48 +00:00
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
|
|
|
|
2019-04-15 22:32:39 +00:00
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-06-02 16:28:20 +00:00
|
|
|
|
2019-04-18 17:58:47 +00:00
|
|
|
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
|
|
|
# BACKUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-15 22:32:39 +00:00
|
|
|
ynh_backup --src_path="/etc/logrotate.d/$app"
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-15 22:32:39 +00:00
|
|
|
ynh_backup --src_path="/etc/systemd/system/$app.service"
|
2017-06-02 16:28:20 +00:00
|
|
|
|
2020-05-07 00:23:17 +00:00
|
|
|
|
2019-02-10 14:02:38 +00:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-05-07 17:34:39 +00:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|