Class: VagrantPlugins::ESXi::Action::SnapshotInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-vmware-esxi/action/snapshot_info.rb

Overview

This action will list all the snapshots

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ SnapshotInfo

Returns a new instance of SnapshotInfo.



9
10
11
12
# File 'lib/vagrant-vmware-esxi/action/snapshot_info.rb', line 9

def initialize(app, _env)
  @app    = app
  @logger = Log4r::Logger.new('vagrant_vmware_esxi::action::snapshot_info')
end

Instance Method Details

#call(env) ⇒ Object



14
15
16
17
# File 'lib/vagrant-vmware-esxi/action/snapshot_info.rb', line 14

def call(env)
  snapshotinfo(env)
  @app.call(env)
end

#snapshotinfo(env) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/vagrant-vmware-esxi/action/snapshot_info.rb', line 19

def snapshotinfo(env)
  @logger.info('vagrant-vmware-esxi, snapshot_info: start...')

  # Get config.
  machine = env[:machine]
  config = env[:machine].provider_config

  @logger.info("vagrant-vmware-esxi, snapshot_info: machine id: #{machine.id}")
  @logger.info("vagrant-vmware-esxi, snapshot_info: current state: #{env[:machine_state]}")

  if machine.id == ''
    env[:ui].info I18n.t('vagrant_vmware_esxi.vagrant_vmware_esxi_message',
                         message: 'Cannot snapshot-info in this state')
  else

    Net::SSH.start(config.esxi_hostname, config.esxi_username,
      password:                   config.esxi_password,
      port:                       config.esxi_hostport,
      keys:                       config.local_private_keys,
      timeout:                    20,
      number_of_password_prompts: 0,
      non_interactive:            true
    ) do |ssh|

      r = ssh.exec!(
          "vim-cmd vmsvc/snapshot.get #{machine.id} 2>&1 | "\
          "sed 's/Get Snapshot:/ /g' | "\
          "grep -v -e '^  $' "\
          "-e 'Snapshot Id ' "\
          "-e 'Snapshot Created On ' "\
          "-e 'Snapshot State '")

      snapshotinfo = r
      if r.exitstatus != 0
        raise Errors::ESXiError,
              message: "Unable to list snapshots:\n"\
                       "  #{allsnapshots}\n#{r.stderr}"
      end

      env[:ui].info I18n.t('vagrant_vmware_esxi.vagrant_vmware_esxi_message',
                           message: "#{snapshotinfo}")
    end
  end
end