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

54 lines
1.8 KiB
Text
Raw Permalink Normal View History

#!/bin/bash
2018-05-01 20:43:49 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-04-10 00:18:53 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-03-19 23:16:12 +01:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2018-05-01 20:43:49 +02:00
2019-03-21 02:07:49 +01:00
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
2019-05-10 16:34:57 +02:00
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2018-05-01 20:43:49 +02:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2024-02-22 19:45:40 +01:00
ynh_backup --src_path="$install_dir"
2018-05-01 20:43:49 +02:00
#=================================================
2024-03-24 20:52:46 +01:00
# BACKUP THE SYSTEM CONFIGURATION
2018-05-01 20:43:49 +02:00
#=================================================
2019-05-10 16:34:57 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2023-08-01 04:15:46 +02:00
ynh_backup --src_path="/etc/logrotate.d/$app"
2019-05-10 16:34:57 +02:00
ynh_backup --src_path="/etc/systemd/system/$app-web.service"
ynh_backup --src_path="/etc/systemd/system/$app-sidekiq.service"
ynh_backup --src_path="/etc/systemd/system/$app-streaming.service"
2018-05-01 20:43:49 +02:00
2018-11-07 05:12:21 +01:00
#=================================================
2022-01-10 19:28:30 +01:00
# BACKUP VARIOUS FILES
2018-11-07 05:12:21 +01:00
#=================================================
2019-05-10 16:34:57 +02:00
ynh_backup --src_path="/etc/cron.d/$app"
2018-11-07 05:12:21 +01:00
2024-03-24 20:52:46 +01:00
ynh_backup --src_path="/var/log/$app/"
2018-05-01 20:43:49 +02:00
#=================================================
# BACKUP THE POSTGRESQL DATABASE
2018-05-01 20:43:49 +02:00
#=================================================
ynh_print_info --message="Backing up the PostgreSQL database..."
2018-06-21 04:48:02 +02:00
ynh_psql_dump_db --database="$db_name" > db.sql
2018-06-21 04:48:02 +02:00
2019-03-18 04:22:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."