Sha256: 4fa48fac13339279ea3dd74c4d6667c9883862e1f6de12b3d2a0a386b26d7c63
Contents?: true
Size: 793 Bytes
Versions: 63
Compression:
Stored size: 793 Bytes
Contents
require "log4r" module VagrantPlugins module HyperV module Action class ReadState def initialize(app, env) @app = app @logger = Log4r::Logger.new("vagrant::hyperv::connection") end def call(env) if env[:machine].id response = env[:machine].provider.driver.get_current_state env[:machine_state_id] = response["state"].downcase.to_sym # If the machine isn't created, then our ID is stale, so just # mark it as not created. if env[:machine_state_id] == :not_created env[:machine].id = nil end else env[:machine_state_id] = :not_created end @app.call(env) end end end end end
Version data entries
63 entries across 56 versions & 8 rubygems