2016-04-07 00:00:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2017-09-05 00:34:00 +02:00
|
|
|
# GENERIC START
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-11-08 13:38:29 +01:00
|
|
|
|
2018-07-13 17:36:34 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2016-12-14 16:13:20 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-09-05 00:34:00 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-01-30 19:16:04 +01:00
|
|
|
ynh_script_progression --message="Load settings" --weight=2
|
2017-03-19 18:36:20 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2016-12-14 16:13:20 +01:00
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
infcloud=$(ynh_app_setting_get $app infcloud)
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
2019-01-18 21:12:58 +01:00
|
|
|
# BACKUP THE APP MAIN DIR
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2019-01-30 19:16:04 +01:00
|
|
|
ynh_script_progression --message="Backup the app main dir" --weight=2
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
CHECK_SIZE "$final_path"
|
2017-09-05 00:34:00 +02:00
|
|
|
ynh_backup "$final_path"
|
2017-03-19 18:36:20 +01:00
|
|
|
CHECK_SIZE "/opt/yunohost/$app"
|
2017-09-05 00:34:00 +02:00
|
|
|
ynh_backup "/opt/yunohost/$app"
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2019-01-18 21:12:58 +01:00
|
|
|
# BACKUP NGINX CONFIGURATION
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2019-01-30 19:16:04 +01:00
|
|
|
ynh_script_progression --message="Backup nginx configuration"
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-09-05 00:34:00 +02:00
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2016-08-05 17:00:50 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2019-01-18 21:12:58 +01:00
|
|
|
# BACKUP PHP-FPM CONFIGURATION
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2019-01-30 19:16:04 +01:00
|
|
|
ynh_script_progression --message="Backup php-fpm configuration"
|
2016-08-05 17:00:50 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
if [ $infcloud -eq 1 ]
|
|
|
|
then
|
2019-01-30 20:00:20 +01:00
|
|
|
ynh_backup "/etc/php/7.0/fpm/pool.d/$app.conf"
|
2017-03-19 18:36:20 +01:00
|
|
|
fi
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
2019-01-18 21:12:58 +01:00
|
|
|
# BACKUP UWSGI CONFIG
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2019-01-30 19:16:04 +01:00
|
|
|
ynh_script_progression --message="Backup uWSGI configuration"
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-09-05 00:34:00 +02:00
|
|
|
ynh_backup "/etc/uwsgi/apps-available/radicale.ini"
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2019-01-18 21:12:58 +01:00
|
|
|
# BACKUP RADICALE CONFIGURATION
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2019-01-30 19:16:04 +01:00
|
|
|
ynh_script_progression --message="Backup Radicale configuration"
|
2017-03-19 18:36:20 +01:00
|
|
|
|
|
|
|
CHECK_SIZE "/etc/$app"
|
2017-09-05 00:34:00 +02:00
|
|
|
ynh_backup "/etc/$app"
|
2017-03-19 18:36:20 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-01-18 21:12:58 +01:00
|
|
|
# BACKUP LOGROTATE CONFIGURATION
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
2019-01-30 19:16:04 +01:00
|
|
|
ynh_script_progression --message="Backup logrotate configuration"
|
2017-03-19 18:36:20 +01:00
|
|
|
|
2017-09-05 00:34:00 +02:00
|
|
|
ynh_backup "/etc/logrotate.d/$app"
|
2019-01-30 19:16:04 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-03-09 13:13:30 +01:00
|
|
|
ynh_script_progression --message="Backup script completed. Please wait for YunoHost to create the backup." --last
|