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

72 lines
2.6 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
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2017-06-10 10:10:31 +02:00
2019-03-16 02:38:12 +01:00
ynh_clean_setup () {
### Remove this function if there's nothing to clean before calling the remove script.
2018-12-25 20:55:11 +01:00
true
}
2018-12-24 16:25:49 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-09 09:03:19 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2019-03-16 02:38:12 +01:00
app=$YNH_APP_INSTANCE_NAME
2017-06-10 10:10:31 +02:00
2019-05-09 01:13:48 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
config_path=$(ynh_app_setting_get --app=$app --key=config_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
2017-06-10 10:10:31 +02:00
2018-12-24 16:25:49 +01:00
#=================================================
# STANDARD BACKUP STEPS
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2019-05-09 09:03:19 +02:00
ynh_script_progression --message="Backing up nginx web server configuration..." --weight=1
2018-12-24 16:25:49 +01:00
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-05-09 09:03:19 +02:00
ynh_script_progression --message="Backuping of Gitlab..." --weight=9
2019-01-26 14:30:58 +01:00
2018-12-24 16:25:49 +01:00
# Use gitlab-rake to backup
2019-03-16 02:38:12 +01:00
gitlab-rake gitlab:backup:create > backup.log
2018-12-24 16:25:49 +01:00
2019-05-09 01:13:48 +02:00
# Searching in backup logs the name of the backup archive created
2019-03-16 02:38:12 +01:00
last_backup=$(grep _gitlab_backup.tar backup.log | cut -d' ' -f4)
mv "/var/opt/$app/backups/$last_backup" "/var/opt/$app/backups/last_gitlab_backup.tar"
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-05-09 09:03:19 +02:00
ynh_script_progression --message="Backuping configuration files of Gitlab..." --weight=1
2019-01-26 14:30:58 +01:00
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
#=================================================
2019-05-09 09:03:19 +02:00
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --last