Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ab8372d2
Commit
ab8372d2
authored
Feb 13, 2020
by
Henrik Christian Grove
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Attempt to lower complexity of unpack function
parent
c1ed08b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
17 deletions
+20
-17
lib/backup/manager.rb
lib/backup/manager.rb
+20
-17
No files found.
lib/backup/manager.rb
View file @
ab8372d2
...
...
@@ -114,35 +114,38 @@ module Backup
def
unpack
cleanup_required
=
true
Dir
.
chdir
(
backup_path
)
do
# check for existing backups in the backup dir
if
File
.
exist?
(
File
.
join
(
backup_path
,
'backup_information.yml'
))
&&
!
ENV
[
'BACKUP'
].
present?
progress
.
puts
"Non tarred backup found in
#{
backup_path
}
, using that"
cleanup_required
=
false
if
ENV
[
'BACKUP'
].
present?
# User has indicated which backup he/she wants restored
tar_file
=
File
.
basename
(
ENV
[
'BACKUP'
])
+
FILE_NAME_SUFFIX
unless
File
.
exist?
(
tar_file
)
progress
.
puts
"The backup file
#{
tar_file
}
does not exist!"
exit
1
end
else
if
backup_file_list
.
empty?
# check for existing backups in the backup dir
if
File
.
exist?
(
File
.
join
(
backup_path
,
'backup_information.yml'
))
tar_file
=
'SKIP'
progress
.
puts
"Non tarred backup found in
#{
backup_path
}
, using that"
cleanup_required
=
false
elsif
backup_file_list
.
empty?
progress
.
puts
"No backups found in
#{
backup_path
}
"
progress
.
puts
"Please make sure that file name ends with
#{
FILE_NAME_SUFFIX
}
"
exit
1
elsif
backup_file_list
.
many?
&&
ENV
[
"BACKUP"
].
nil?
elsif
backup_file_list
.
many?
progress
.
puts
'Found more than one backup:'
# print list of available backups
progress
.
puts
" "
+
available_timestamps
.
join
(
"
\n
"
)
progress
.
puts
'Please specify which one you want to restore:'
progress
.
puts
'rake gitlab:backup:restore BACKUP=timestamp_of_backup'
exit
1
else
tar_file
=
backup_file_list
.
first
end
end
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
unless
tar_file
==
'SKIP'
progress
.
print
'Unpacking backup ... '
if
Kernel
.
system
(
*
%W(tar -xf
#{
tar_file
}
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment