2023-12-11 17:56:26 +01:00
|
|
|
#!/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/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
|
|
|
|
#=================================================
|
|
|
|
|
2023-12-12 11:38:41 +01:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|