2017-11-01 20:57:58 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2018-07-13 17:31:45 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-11-01 20:57:58 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-05-26 17:00:09 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2017-11-01 20:57:58 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-05-26 17:00:09 +02:00
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2017-11-01 20:57:58 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-05-26 17:00:09 +02:00
|
|
|
ynh_script_progression --message="Backing up the main app directory..."
|
2017-11-01 20:57:58 +01:00
|
|
|
|
2019-05-26 17:00:09 +02:00
|
|
|
ynh_backup --src_path="$final_path"
|
2017-11-01 20:57:58 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
|
|
|
# BACKUP LOGROTATE
|
|
|
|
#=================================================
|
2019-05-26 17:00:09 +02:00
|
|
|
ynh_script_progression --message="Backing up logrotate configuration..."
|
2017-11-01 20:57:58 +01:00
|
|
|
|
2019-05-26 17:00:09 +02:00
|
|
|
ynh_backup --src_path="/etc/logrotate.d/$app"
|
2017-11-01 20:57:58 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE CRON FILE
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-26 17:00:09 +02:00
|
|
|
ynh_backup --src_path="/etc/cron.d/$app"
|
2019-01-30 16:07:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-26 17:00:09 +02:00
|
|
|
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --last
|