mirror of
https://github.com/YunoHost-Apps/diacamma_ynh.git
synced 2024-09-03 18:26:10 +02:00
34 lines
1.2 KiB
Bash
34 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
source ../settings/scripts/_common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
|
#=================================================
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
|
|
ynh_backup --src_path="$install_dir"
|
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
ynh_backup --src_path="/etc/fail2ban/jail.d/$app.conf"
|
|
ynh_backup --src_path="/etc/fail2ban/filter.d/$app.conf"
|
|
|
|
ynh_backup --src_path="/etc/logrotate.d/$app"
|
|
|
|
ynh_backup --src_path="/etc/systemd/system/$app.service"
|
|
|
|
#=================================================
|
|
# BACKUP THE DATABASE
|
|
#=================================================
|
|
ynh_print_info --message="Backing up the postgresql database..."
|
|
|
|
### (However, things like MySQL dumps *do* take some time to run, though the
|
|
### copy of the generated dump to the archive still happens later)
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|