2017-10-21 01:09:55 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-03-08 21:39:44 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-10-21 01:09:55 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2020-12-07 23:43:48 +01:00
|
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
|
|
|
2017-10-21 01:09:55 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
2023-05-02 20:27:26 +02:00
|
|
|
ynh_backup --src_path="$install_dir"
|
2017-10-21 01:09:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2021-06-29 19:47:16 +02:00
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-10-21 01:09:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2021-06-29 19:47:16 +02:00
|
|
|
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
2017-10-21 01:09:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2021-07-10 22:28:57 +02:00
|
|
|
ynh_print_info --message="Backing up the MySQL database..."
|
2017-10-21 01:09:55 +02:00
|
|
|
|
2021-06-29 19:47:16 +02:00
|
|
|
ynh_mysql_dump_db --database="$db_name" > db.sql
|
2017-10-21 01:09:55 +02:00
|
|
|
|
2019-03-08 21:39:44 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-10 22:28:57 +02:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|