Silence backup warnings when CRON=1 in use

If CRON=1 is in use, we shouldn't generate any output or admins may be
notified via e-mail about unnecessary warnings.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63703
This commit is contained in:
Stan Hu 2019-06-24 14:07:37 -07:00
parent 1cffafbfd4
commit ad3abd1d3a
2 changed files with 7 additions and 2 deletions

View File

@ -0,0 +1,5 @@
---
title: Silence backup warnings when CRON=1 in use
merge_request: 30033
author:
type: fixed

View File

@ -21,10 +21,10 @@ namespace :gitlab do
backup.cleanup
backup.remove_old
puts "Warning: Your gitlab.rb and gitlab-secrets.json files contain sensitive data \n" \
progress.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."
progress.puts "Backup task is done."
end
# Restore backup of GitLab system