1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monitorix_ynh.git synced 2024-09-03 19:46:06 +02:00
monitorix_ynh/scripts/backup

46 lines
1.4 KiB
Text
Raw Normal View History

2017-01-05 23:37:07 +01:00
#!/bin/bash
2020-11-17 23:37:38 +01:00
source ../settings/scripts/_common.sh
2017-07-21 22:11:45 +02:00
source /usr/share/yunohost/helpers
load_vars
2017-01-05 23:37:07 +01:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2024-04-27 00:53:41 +02:00
if systemctl is-active "$app".service --quiet; then
ynh_print_warn "It's highly recommended to make your backup when the service is stopped. Please stop $app service with this command before to run the backup 'systemctl stop $app.service'"
fi
2022-11-02 23:07:44 +01:00
ynh_print_info "Declaring files to be backed up..."
2017-01-05 23:37:07 +01:00
2023-12-09 00:35:51 +01:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup "/etc/$app/"
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_backup "$nginx_status_conf"
ynh_print_info "Backing up code..."
ynh_backup "$install_dir"
2017-01-05 23:37:07 +01:00
2023-12-09 00:35:51 +01:00
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP SYSTEMD
#=================================================
2023-01-22 03:09:34 +01:00
ynh_backup "/etc/systemd/system/$app.service"
2023-12-09 00:35:51 +01:00
#=================================================
# BACKUP VARIOUS FILES
#=================================================
ynh_backup "$data_dir"
2023-12-09 00:35:51 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2017-02-13 16:17:53 +01:00
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."