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-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-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
|