1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/20euros_ynh.git synced 2024-09-03 18:05:53 +02:00
20euros_ynh/scripts/backup

24 lines
679 B
Text
Raw Normal View History

2020-05-10 11:02:01 +02:00
#!/bin/bash
source /usr/share/yunohost/helpers
ynh_print_info "Declaring files to be backed up..."
2020-11-18 18:22:31 +01:00
2020-05-10 11:02:01 +02:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
ynh_backup "$install_dir"
2020-05-10 11:02:01 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
2020-05-10 11:02:01 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."