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

44 lines
1.5 KiB
Text
Raw Normal View History

2019-10-01 14:40:53 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-02-27 23:22:06 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-11-05 14:49:54 +01:00
source ../settings/scripts/_common.sh
2019-10-01 14:40:53 +02:00
source /usr/share/yunohost/helpers
#=================================================
2022-02-27 23:22:06 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
2019-10-01 14:40:53 +02:00
#=================================================
2022-02-27 23:22:06 +01:00
ynh_print_info --message="Declaring files to be backed up..."
2019-10-01 14:40:53 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# SPECIFIC BACKUP
2022-03-02 22:35:33 +01:00
#=================================================
# BACKUP VARIOUS FILES
#=================================================
2023-05-26 11:26:10 +02:00
ynh_backup --src_path="/etc/openproject/"
2022-03-02 22:35:33 +01:00
2019-10-01 14:40:53 +02:00
#=================================================
2022-02-27 23:22:06 +01:00
# BACKUP THE POSTGRESQL DATABASE
2019-10-01 14:40:53 +02:00
#=================================================
2022-02-27 23:22:06 +01:00
ynh_print_info --message="Backing up the PostgreSQL database..."
2019-10-01 14:40:53 +02:00
2022-03-01 20:07:37 +01:00
ynh_psql_dump_db --database="$db_name" > db.sql
2019-10-01 14:40:53 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-02-27 23:22:06 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."