Less changes to #unpack

parent c8794ec4
...@@ -125,25 +125,19 @@ module Backup ...@@ -125,25 +125,19 @@ module Backup
end end
def unpack def unpack
Dir.chdir(backup_path) do if ENV['BACKUP'].blank? && non_tarred_backup?
if ENV['BACKUP'].present? progress.puts "Non tarred backup found in #{backup_path}, using that"
# User has indicated which backup to restore
tar_file = File.basename(ENV['BACKUP']) + FILE_NAME_SUFFIX
unless File.exist?(tar_file) return false
progress.puts "The backup file #{tar_file} does not exist!"
exit 1
end end
Dir.chdir(backup_path) do
# check for existing backups in the backup dir # check for existing backups in the backup dir
elsif File.exist?(File.join(backup_path, 'backup_information.yml')) if backup_file_list.empty?
progress.puts "Non tarred backup found in #{backup_path}, using that"
break false
elsif backup_file_list.empty?
progress.puts "No backups found in #{backup_path}" progress.puts "No backups found in #{backup_path}"
progress.puts "Please make sure that file name ends with #{FILE_NAME_SUFFIX}" progress.puts "Please make sure that file name ends with #{FILE_NAME_SUFFIX}"
exit 1 exit 1
elsif backup_file_list.many? elsif backup_file_list.many? && ENV["BACKUP"].nil?
progress.puts 'Found more than one backup:' progress.puts 'Found more than one backup:'
# print list of available backups # print list of available backups
progress.puts " " + available_timestamps.join("\n ") progress.puts " " + available_timestamps.join("\n ")
...@@ -152,7 +146,16 @@ module Backup ...@@ -152,7 +146,16 @@ module Backup
exit 1 exit 1
end end
tar_file = backup_file_list.first tar_file = if ENV['BACKUP'].present?
File.basename(ENV['BACKUP']) + FILE_NAME_SUFFIX
else
backup_file_list.first
end
unless File.exist?(tar_file)
progress.puts "The backup file #{tar_file} does not exist!"
exit 1
end
progress.print 'Unpacking backup ... ' progress.print 'Unpacking backup ... '
...@@ -163,7 +166,6 @@ module Backup ...@@ -163,7 +166,6 @@ module Backup
exit 1 exit 1
end end
end end
true
end end
def tar_version def tar_version
...@@ -177,6 +179,10 @@ module Backup ...@@ -177,6 +179,10 @@ module Backup
private private
def non_tarred_backup?
File.exist?(File.join(backup_path, 'backup_information.yml'))
end
def backup_path def backup_path
Gitlab.config.backup.path Gitlab.config.backup.path
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