2018-03-27 19:32:35 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-04-09 23:37:52 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-04-03 00:50:10 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2019-04-03 03:27:49 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2019-04-03 02:22:50 +02:00
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
2019-06-03 22:37:54 +02:00
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
2018-05-31 00:33:14 +02:00
|
|
|
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
ynh_backup --src_path="$install_dir"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2021-06-29 22:13:41 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE DATA DIR
|
|
|
|
#=================================================
|
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
ynh_backup --src_path="$data_dir" --is_big
|
2021-06-29 22:13:41 +02:00
|
|
|
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
2019-10-24 02:39:32 +02:00
|
|
|
#=================================================
|
2018-03-27 19:32:35 +02:00
|
|
|
# BACKUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_backup --src_path="/etc/logrotate.d/$app"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_backup --src_path="/etc/systemd/system/$app.service"
|
2018-05-31 00:33:14 +02:00
|
|
|
|
2020-09-27 17:49:38 +02:00
|
|
|
#=================================================
|
2021-04-10 19:38:56 +02:00
|
|
|
# BACKUP THE POSTGRESQL DATABASE
|
2020-09-20 18:32:24 +02:00
|
|
|
#=================================================
|
2021-04-10 19:38:56 +02:00
|
|
|
ynh_print_info --message="Backing up the PostgreSQL database..."
|
2020-09-20 18:32:24 +02:00
|
|
|
|
2021-04-10 19:38:56 +02:00
|
|
|
ynh_psql_dump_db --database="$db_name" > db.sql
|
2020-09-20 18:32:24 +02:00
|
|
|
|
2019-04-03 00:50:10 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|