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

37 lines
1.1 KiB
Text
Raw Normal View History

2017-07-18 13:38:42 +02:00
#!/bin/bash
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2017-07-21 12:11:26 +02:00
source /usr/share/yunohost/helpers
2024-08-29 15:01:46 +02:00
ynh_print_info "Declaring files to be backed up..."
2022-06-26 20:30:44 +02:00
2017-07-18 13:38:42 +02:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2024-08-29 15:01:46 +02:00
ynh_backup "$install_dir"
#=================================================
2024-05-13 00:13:28 +02:00
# SYSTEM CONFIGURATION
#=================================================
2024-08-29 15:01:46 +02:00
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
2017-07-18 13:38:42 +02:00
2024-08-29 15:01:46 +02:00
ynh_backup "/etc/logrotate.d/$app"
2021-11-13 23:17:56 +01:00
2024-08-29 15:01:46 +02:00
ynh_backup "/etc/systemd/system/$app.service"
2017-07-18 13:38:42 +02:00
#=================================================
# BACKUP THE MONGODB DATABASE
#=================================================
2024-08-29 15:01:46 +02:00
ynh_print_info "Backing up the MongoDB database..."
2024-08-29 15:01:46 +02:00
ynh_mongo_dump_db > ./dump.bson
#=================================================
# END OF SCRIPT
#=================================================
2017-07-18 13:38:42 +02:00
2024-08-29 15:01:46 +02:00
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."