1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/friendica_ynh.git synced 2024-09-03 18:36:14 +02:00
friendica_ynh/scripts/backup

71 lines
2.4 KiB
Text
Raw Normal View History

2017-07-21 11:11:44 +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
2017-07-21 11:11:44 +02:00
source /usr/share/yunohost/helpers
#=================================================
2021-02-10 09:00:00 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
2017-07-21 11:11:44 +02:00
#=================================================
2021-02-10 09:00:00 +01:00
ynh_print_info --message="Declaring files to be backed up..."
2023-08-21 13:12:12 +02:00
(cd $install_dir && ynh_exec_as "$app" php$phpversion bin/console maintenance 1)
2020-04-09 10:42:49 +02:00
#=================================================
2017-07-21 11:11:44 +02:00
# BACKUP THE APP MAIN DIR
#=================================================
2020-04-09 10:42:49 +02:00
2023-08-20 15:36:10 +02:00
ynh_backup --src_path="$install_dir"
2017-07-21 11:11:44 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2020-04-09 10:42:49 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# BACKUP THE PHP-FPM CONFIGURATION
#=================================================
2020-04-09 10:42:49 +02:00
2020-10-15 21:09:24 +02:00
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
2017-07-21 11:11:44 +02:00
2023-08-21 10:13:29 +02:00
#=================================================
# BACKUP FAIL2BAN CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/fail2ban/jail.d/$app.conf"
ynh_backup --src_path="/etc/fail2ban/filter.d/$app.conf"
2023-08-21 12:23:35 +02:00
#=================================================
# BACKUP LOGROTATE
#=================================================
ynh_backup --src_path="/etc/logrotate.d/$app"
2021-07-19 08:38:46 +02:00
#=================================================
# BACKUP VARIOUS FILES
#=================================================
2023-08-21 10:05:52 +02:00
ynh_backup --src_path="/etc/systemd/system/$app.service"
2021-07-19 08:38:46 +02:00
2017-07-21 11:11:44 +02:00
#=================================================
# BACKUP THE MYSQL DATABASE
#=================================================
2021-02-10 09:00:00 +01:00
ynh_print_info --message="Backing up the MySQL database..."
2017-07-21 11:11:44 +02:00
2020-04-09 10:42:49 +02:00
ynh_mysql_dump_db --database="$db_name" > db.sql
2017-07-21 11:11:44 +02:00
2023-08-21 12:44:17 +02:00
(cd $install_dir && ynh_exec_as "$app" php$phpversion bin/console maintenance 0)
#=================================================
# END OF SCRIPT
#=================================================
2021-07-17 16:48:02 +02:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."