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-03-16 02:38:12 +01:00
|
|
|
ynh_print_info "Loading installation settings..."
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2017-06-10 10:10:31 +02:00
|
|
|
|
2019-03-16 02:38:12 +01:00
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
config_path=$(ynh_app_setting_get $app config_path)
|
|
|
|
domain=$(ynh_app_setting_get $app 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-03-16 02:38:12 +01:00
|
|
|
ynh_print_info "Backing up nginx web server configuration..."
|
2018-12-24 16:25:49 +01:00
|
|
|
|
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
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
|
|
|
ynh_print_info "Backuping of Gitlab..."
|
|
|
|
|
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-03-16 02:38:12 +01:00
|
|
|
# Searching in backup logs the
|
|
|
|
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"
|
|
|
|
|
|
|
|
ynh_backup "/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
|
|
|
ynh_print_info "Backuping configuration files of Gitlab..."
|
|
|
|
|
2018-12-24 19:10:30 +01:00
|
|
|
ynh_backup "$config_path/gitlab-secrets.json"
|
|
|
|
ynh_backup "$config_path/gitlab.rb"
|
2019-03-16 02:38:12 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|