Commit 615e57c7 authored by Rémy Coutable's avatar Rémy Coutable

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
parents 16d4eeb2 deb5276f
---
title: Add warning that gitlab-secrets isn't included in backup
merge_request:
author:
type: other
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment