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

40 lines
1.1 KiB
Text
Raw Permalink Normal View History

2020-11-06 21:41:02 +01:00
#!/bin/bash
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
ynh_print_info "Declaring files to be backed up..."
2021-05-18 14:15:30 +02:00
2020-11-06 21:41:02 +01:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
ynh_backup "$install_dir"
2020-11-06 21:41:02 +01:00
#=================================================
# BACKUP THE DATA DIR
2020-11-06 21:41:02 +01:00
#=================================================
ynh_backup "$data_dir"
2020-11-06 21:41:02 +01:00
#=================================================
2024-06-19 15:10:40 +02:00
# SYSTEM CONFIGURATION
2020-11-06 21:41:02 +01:00
#=================================================
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
2020-11-06 21:41:02 +01:00
ynh_backup "/etc/php/$php_version/fpm/pool.d/$app.conf"
2020-11-06 21:41:02 +01:00
#=================================================
# BACKUP THE MYSQL DATABASE
#=================================================
ynh_print_info "Backing up the MySQL database..."
2020-11-06 21:41:02 +01:00
ynh_mysql_dump_db > db.sql
2020-11-06 21:41:02 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."