2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
module Backup
|
|
|
|
module Helper
|
|
|
|
def access_denied_error(path)
|
|
|
|
message = <<~EOS
|
|
|
|
|
|
|
|
### NOTICE ###
|
|
|
|
As part of restore, the task tried to move existing content from #{path}.
|
|
|
|
However, it seems that directory contains files/folders that are not owned
|
|
|
|
by the user #{Gitlab.config.gitlab.user}. To proceed, please move the files
|
|
|
|
or folders inside #{path} to a secure location so that #{path} is empty and
|
|
|
|
run restore task again.
|
|
|
|
|
|
|
|
EOS
|
|
|
|
raise message
|
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
def resource_busy_error(path)
|
|
|
|
message = <<~EOS
|
|
|
|
|
|
|
|
### NOTICE ###
|
|
|
|
As part of restore, the task tried to rename `#{path}` before restoring.
|
|
|
|
This could not be completed, perhaps `#{path}` is a mountpoint?
|
|
|
|
|
|
|
|
To complete the restore, please move the contents of `#{path}` to a
|
|
|
|
different location and run the restore task again.
|
|
|
|
|
|
|
|
EOS
|
|
|
|
raise message
|
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
|
|
|
|
def gzip_cmd
|
|
|
|
@gzip_cmd ||= if ENV['GZIP_RSYNCABLE'] == 'yes'
|
|
|
|
"gzip --rsyncable -c -1"
|
|
|
|
else
|
|
|
|
"gzip -c -1"
|
|
|
|
end
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
end
|