yunohost-gitea_ynh/scripts/backup

43 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-02-25 21:45:24 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2020-11-17 23:33:50 +01:00
# Load common variables and helpers
source ../settings/scripts/_common.sh
2018-02-25 21:45:24 +01:00
source /usr/share/yunohost/helpers
2024-04-27 00:07:37 +02:00
if systemctl is-active "$app".service --quiet; then
ynh_print_warn "It's hightly 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'"
2020-12-07 15:11:16 +01:00
fi
ynh_print_info 'Declaring files to be backed up...'
2018-02-25 21:45:24 +01:00
# Copy the app source files
ynh_backup "$install_dir"
2018-02-25 21:45:24 +01:00
# Copy the data files
ynh_backup "$data_dir"
2019-09-10 22:43:45 +02:00
2018-02-25 21:45:24 +01:00
# Copy the conf files
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_backup "/etc/fail2ban/jail.d/$app.conf"
ynh_backup "/etc/fail2ban/filter.d/$app.conf"
ynh_backup "/etc/systemd/system/$app.service"
2018-02-25 21:45:24 +01:00
# Backup logs
ynh_backup "/var/log/$app"
2018-02-25 21:45:24 +01:00
# Dump the database
ynh_print_info "Backing up the MySQL database"
ynh_mysql_dump_db > ./db.sql
#=================================================
# END OF SCRIPT
#=================================================
2019-10-27 14:54:35 +01:00
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."