Class: SMPTool::CLI::Commands::Squeeze

Inherits:
VolumeOperation show all
Defined in:
lib/smp_tool/cli/commands/squeeze.rb

Overview

Command to consolidate all free space at the end of a volume.

Instance Method Summary collapse

Instance Method Details

#call(input:, **options) ⇒ Object



12
13
14
15
16
17
18
# File 'lib/smp_tool/cli/commands/squeeze.rb', line 12

def call(input:, **options)
  Executor::Squeezer.new(
    input: input,
    logger: _logger(options[:verbosity]),
    **options
  ).call
end