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

56 lines
1.8 KiB
Text
Raw Normal View History

2016-08-21 01:03:46 +02:00
#!/bin/bash
2021-02-17 23:50:49 +01:00
#=================================================
# 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 09:44:41 +02:00
ynh_backup --src_path="$install_dir"
2021-02-17 23:50:49 +01:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# BACKUP THE PHP-FPM CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP VARIOUS FILES
#=================================================
ynh_backup --src_path="/etc/cron.d/$app"
2016-08-21 01:03:46 +02:00
2021-02-17 23:50:49 +01:00
#=================================================
# BACKUP THE MYSQL DATABASE
#=================================================
ynh_print_info --message="Backing up the MySQL database..."
2016-08-21 01:03:46 +02:00
2021-02-17 23:50:49 +01:00
ynh_mysql_dump_db --database="$db_name" > db.sql
2016-08-21 01:03:46 +02:00
2021-02-17 23:50:49 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-02-17 23:50:49 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."