1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tracim_ynh.git synced 2024-10-01 13:34:52 +02:00
tracim_ynh/scripts/backup

59 lines
2 KiB
Text
Raw Normal View History

2022-04-06 20:56:59 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2023-04-27 22:55:37 +02:00
ynh_backup --src_path="$install_dir"
2022-04-06 20:56:59 +02:00
#=================================================
# BACKUP THE DATA DIR
#=================================================
2023-04-27 22:55:37 +02:00
ynh_backup --src_path="$data_dir" --is_big
2022-04-06 20:56:59 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2022-04-12 23:16:46 +02:00
2022-04-06 20:56:59 +02:00
#=================================================
# SPECIFIC BACKUP
#=================================================
2022-04-11 16:00:33 +02:00
# BACKUP SYSTEMD
2022-04-06 20:56:59 +02:00
#=================================================
2022-04-11 16:00:33 +02:00
ynh_backup --src_path="/etc/uwsgi/apps-available/$app-web.ini"
ynh_backup --src_path="/etc/uwsgi/apps-available/$app-webdav.ini"
ynh_backup --src_path="/etc/uwsgi/apps-available/$app-caldav.ini"
ynh_backup --src_path="/etc/supervisor/conf.d/$app.conf"
2022-04-06 20:56:59 +02:00
#=================================================
2022-04-08 03:47:14 +02:00
# BACKUP THE POSTGRESQL DATABASE
2022-04-06 20:56:59 +02:00
#=================================================
2022-04-08 03:47:14 +02:00
ynh_print_info --message="Backing up the PostgreSQL database..."
2022-04-06 20:56:59 +02:00
2022-04-08 03:47:14 +02:00
ynh_psql_dump_db --database="$db_name" > db.sql
2022-04-06 20:56:59 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."