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

21 lines
811 B
Text
Raw Permalink Normal View History

2020-07-08 09:49:14 +02:00
#!/bin/bash
2022-03-31 19:39:38 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2020-07-08 09:49:14 +02:00
source /usr/share/yunohost/helpers
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2023-02-17 22:34:43 +01:00
ynh_backup --src_path="$install_dir" --is_big
2020-07-08 09:49:14 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2022-03-31 19:39:38 +02:00
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
2020-07-08 09:49:14 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."