Merge branch 'add-warning-to-backup-rake-task' into 'master'

Add warning that gitlab-secrets isn't included

See merge request gitlab-org/gitlab-ce!28187
This commit is contained in:
Rémy Coutable 2019-05-09 09:35:59 +00:00
commit 615e57c7c5
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
title: Add warning that gitlab-secrets isn't included in backup
merge_request:
author:
type: other

View File

@ -20,6 +20,11 @@ namespace :gitlab do
backup.pack
backup.cleanup
backup.remove_old
puts "Warning: Your gitlab.rb and gitlab-secrets.json files contain sensitive data \n" \
"and are not included in this backup. You will need these files to restore a backup.\n" \
"Please back them up manually.".color(:red)
puts "Backup task is done."
end
# Restore backup of GitLab system
@ -68,6 +73,9 @@ namespace :gitlab do
Rake::Task['cache:clear'].invoke
backup.cleanup
puts "Warning: Your gitlab.rb and gitlab-secrets.json files contain sensitive data \n" \
"and are not included in this backup. You will need to restore these files manually.".color(:red)
puts "Restore task is done."
end
namespace :repo do