Commit 70c0e8b5 authored by Shubham Kumar's avatar Shubham Kumar

Delete backups/tmp after restore

Changelog: fixed
parent e9cfc62c
...@@ -72,6 +72,17 @@ module Backup ...@@ -72,6 +72,17 @@ module Backup
end end
end end
def remove_tmp
# delete tmp inside backups
progress.print "Deleting backups/tmp ... "
if FileUtils.rm_rf(File.join(backup_path, "tmp"))
progress.puts "done".color(:green)
else
puts "deleting backups/tmp failed".color(:red)
end
end
def remove_old def remove_old
# delete backups # delete backups
progress.print "Deleting old backups ... " progress.print "Deleting old backups ... "
......
...@@ -91,6 +91,8 @@ namespace :gitlab do ...@@ -91,6 +91,8 @@ namespace :gitlab do
backup.cleanup backup.cleanup
end end
backup.remove_tmp
puts "Warning: Your gitlab.rb and gitlab-secrets.json files contain sensitive data \n" \ 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) "and are not included in this backup. You will need to restore these files manually.".color(:red)
puts "Restore task is done." puts "Restore task is done."
......
...@@ -88,6 +88,27 @@ RSpec.describe Backup::Manager do ...@@ -88,6 +88,27 @@ RSpec.describe Backup::Manager do
end end
end end
describe '#remove_tmp' do
let(:path) { File.join(Gitlab.config.backup.path, 'tmp') }
before do
allow(FileUtils).to receive(:rm_rf).and_return(true)
end
it 'removes backups/tmp dir' do
subject.remove_tmp
expect(FileUtils).to have_received(:rm_rf).with(path)
end
it 'prints running task with a done confirmation' do
subject.remove_tmp
expect(progress).to have_received(:print).with('Deleting backups/tmp ... ')
expect(progress).to have_received(:puts).with('done')
end
end
describe '#remove_old' do describe '#remove_old' do
let(:files) do let(:files) do
[ [
......
...@@ -490,8 +490,7 @@ RSpec.describe 'gitlab:app namespace rake task', :delete do ...@@ -490,8 +490,7 @@ RSpec.describe 'gitlab:app namespace rake task', :delete do
'lfs.tar.gz', 'lfs.tar.gz',
'pages.tar.gz', 'pages.tar.gz',
'registry.tar.gz', 'registry.tar.gz',
'repositories', 'repositories'
'tmp'
) )
end end
......
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