Method: Backup::Storage::Base#perform!

Defined in:
lib/backup/storage/base.rb

#perform!Object



43
44
45
46
47
48
49
50
# File 'lib/backup/storage/base.rb', line 43

def perform!
  Logger.info "#{ storage_name } Started..."
  transfer!
  if respond_to?(:cycle!, true) && (keep.to_i > 0 || keep.is_a?(Time))
    cycle!
  end
  Logger.info "#{ storage_name } Finished!"
end