Class: VagrantPlugins::PersistentStorage::Action::DetachStorage

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-persistent-storage/action/detach_storage.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ DetachStorage

Returns a new instance of DetachStorage.



8
9
10
11
12
13
14
# File 'lib/vagrant-persistent-storage/action/detach_storage.rb', line 8

def initialize(app, env)
  @app = app
  @machine = env[:machine]
  @global_env = @machine.env
  @provider = env[:provider]
  @logger = Log4r::Logger.new('vagrant::persistent_storage::action::detach_adapter')
end

Instance Method Details

#call(env) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/vagrant-persistent-storage/action/detach_storage.rb', line 16

def call(env)
  # skip if machine is not saved and the action is resume
  return @app.call(env) if @machine.state.id != :saved && env[:machine_action] == :resume

  return @app.call(env) unless env[:machine].config.persistent_storage.enabled?
  @logger.info '** Detaching Persistent Storage **'

  env[:ui].info I18n.t("vagrant_persistent_storage.action.detach_storage")
  location = env[:machine].config.persistent_storage.location
  env[:machine].provider.driver.detach_storage(location)

  @app.call(env)

end