1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/radicale_ynh.git synced 2024-09-03 20:16:14 +02:00
radicale_ynh/scripts/backup

92 lines
2.8 KiB
Text
Raw Permalink Normal View History

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
2022-03-18 22:47:33 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
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
#=================================================
2022-03-18 22:47:33 +01:00
ynh_clean_setup () {
true
}
2017-09-05 00:34:00 +02:00
# 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
#=================================================
2020-12-07 09:05:15 +01:00
ynh_print_info --message="Loading installation settings..."
2017-03-19 18:36:20 +01:00
app=$YNH_APP_INSTANCE_NAME
2022-03-18 22:47:33 +01:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
2020-12-07 09:05:15 +01:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2022-03-18 22:47:33 +01:00
infcloud=$(ynh_app_setting_get --app=$app --key=infcloud)
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
2020-12-07 09:05:15 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2017-03-19 18:36:20 +01:00
#=================================================
2019-01-18 21:12:58 +01:00
# BACKUP THE APP MAIN DIR
2017-03-19 18:36:20 +01:00
#=================================================
2016-04-07 00:00:41 +02:00
2022-03-18 22:47:33 +01:00
ynh_backup --src_path="$final_path"
ynh_backup --src_path="/opt/yunohost/$app"
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
2022-03-18 22:47:33 +01:00
# BACKUP THE NGINX CONFIGURATION
2017-03-19 18:36:20 +01:00
#=================================================
2016-04-07 00:00:41 +02:00
2022-03-18 22:47:33 +01:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2016-08-05 17:00:50 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
2022-03-18 22:47:33 +01:00
# BACKUP THE PHP-FPM CONFIGURATION
2017-03-19 18:36:20 +01:00
#=================================================
2016-08-05 17:00:50 +02:00
2017-03-19 18:36:20 +01:00
if [ $infcloud -eq 1 ]
then
2022-03-18 22:47:33 +01:00
ynh_backup --src_path="/etc/php/$phpversion/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
#=================================================
2022-03-18 22:47:33 +01:00
# BACKUP LOGROTATE
2017-03-19 18:36:20 +01:00
#=================================================
2016-04-07 00:00:41 +02:00
2022-03-18 22:47:33 +01:00
ynh_backup --src_path="/etc/logrotate.d/$app"
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
2022-03-18 22:47:33 +01:00
# BACKUP SYSTEMD
2017-03-19 18:36:20 +01:00
#=================================================
2022-11-22 13:40:41 +01:00
if [ -e "/etc/uwsgi/apps-available/radicale.ini" ]
then
ynh_backup --src_path="/etc/uwsgi/apps-available/radicale.ini"
else
ynh_backup --src_path="/etc/systemd/system/$app.service"
fi
2017-03-19 18:36:20 +01:00
#=================================================
2022-03-18 22:47:33 +01:00
# BACKUP VARIOUS FILES
2017-03-19 18:36:20 +01:00
#=================================================
2022-03-18 22:47:33 +01:00
ynh_backup --src_path="/etc/$app/"
2019-01-30 19:16:04 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-03-18 22:47:33 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."