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

49 lines
1.7 KiB
Text
Raw Normal View History

2017-06-10 10:10:31 +02:00
#!/bin/bash
2018-12-24 16:25:49 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-06-10 10:10:31 +02:00
2019-03-16 02:38:12 +01:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2018-12-24 18:16:01 +01:00
source ../settings/scripts/_common.sh
2019-03-16 02:38:12 +01:00
source /usr/share/yunohost/helpers
2018-12-24 16:25:49 +01:00
#=================================================
2020-12-23 16:58:58 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2018-12-24 16:25:49 +01:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2019-05-09 01:13:48 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2018-12-24 16:25:49 +01:00
#=================================================
2018-12-25 20:55:11 +01:00
# BACKUP GITLAB DATABASE
2018-12-24 16:25:49 +01:00
#=================================================
2019-01-26 14:30:58 +01:00
2020-05-23 01:04:34 +02:00
# Use gitlab-backup to backup
2019-05-29 17:00:45 +02:00
# For the complete doc: https://docs.gitlab.com/ce/raketasks/backup_restore.html
# For the filename: https://docs.gitlab.com/ce/raketasks/backup_restore.html#backup-filename
2019-10-27 10:02:10 +01:00
gitlab-backup create BACKUP=last
2019-03-16 02:38:12 +01:00
2019-05-09 01:13:48 +02:00
ynh_backup --src_path="/var/opt/$app/backups/last_gitlab_backup.tar"
2018-12-25 20:55:11 +01:00
#=================================================
# BACKUP CONF FILES
#=================================================
2019-01-26 14:30:58 +01:00
2023-03-03 11:24:16 +01:00
config_path=/etc/$app
2019-05-09 01:13:48 +02:00
ynh_backup --src_path="$config_path/gitlab-secrets.json"
ynh_backup --src_path="$config_path/gitlab.rb"
ynh_backup --src_path="$config_path/gitlab-persistent.rb"
2019-03-16 02:38:12 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-12-23 16:58:58 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."