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

54 lines
1.8 KiB
Text
Raw Normal View History

2018-02-06 14:33:23 +01:00
#!/bin/bash
2018-02-11 00:32:26 +01:00
#=================================================
# GENERIC START
#=================================================
2022-03-09 00:27:32 +01:00
# IMPORT GENERIC HELPERS
#=================================================
2018-02-11 00:32:26 +01:00
2022-03-09 00:27:32 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2018-02-06 14:33:23 +01:00
source /usr/share/yunohost/helpers
2018-02-11 00:32:26 +01:00
#=================================================
2022-03-09 00:27:32 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
2018-02-11 00:32:26 +01:00
#=================================================
2022-03-09 00:27:32 +01:00
ynh_print_info --message="Declaring files to be backed up..."
2018-02-11 00:32:26 +01:00
2022-03-09 00:27:32 +01:00
#=================================================
2018-02-06 14:33:23 +01:00
# BACKUP THE APP MAIN DIR
2022-03-09 00:27:32 +01:00
#=================================================
2023-11-02 22:33:38 +01:00
ynh_backup --src_path="$install_dir"
2022-03-09 00:27:32 +01:00
#=================================================
# BACKUP THE DATA DIR
#=================================================
2018-02-06 14:33:23 +01:00
2022-03-09 00:27:32 +01:00
ynh_backup --src_path="$gollem_data_dir"
2018-02-06 14:33:23 +01:00
2022-03-09 00:27:32 +01:00
#=================================================
2018-02-06 14:33:23 +01:00
# BACKUP THE NGINX CONFIGURATION
2022-03-09 00:27:32 +01:00
#=================================================
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2018-02-06 14:33:23 +01:00
2022-03-09 00:27:32 +01:00
#=================================================
2018-02-06 14:33:23 +01:00
# BACKUP THE PHP-FPM CONFIGURATION
2022-03-09 00:27:32 +01:00
#=================================================
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
2018-02-06 14:33:23 +01:00
2022-03-09 00:27:32 +01:00
#=================================================
2018-02-06 14:33:23 +01:00
# BACKUP THE MYSQL DATABASE
2022-03-09 00:27:32 +01:00
#=================================================
ynh_print_info --message="Backing up the MySQL database..."
ynh_mysql_dump_db --database="$db_name" > db.sql
#=================================================
# END OF SCRIPT
#=================================================
2022-03-09 00:27:32 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."