Class: VagrantPlugins::Proxmox::Action::IsCreated

Inherits:
ProxmoxAction
  • Object
show all
Defined in:
lib/vagrant-proxmox/action/is_created.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ IsCreated

Returns a new instance of IsCreated.



7
8
9
# File 'lib/vagrant-proxmox/action/is_created.rb', line 7

def initialize app, env
	@app = app
end

Instance Method Details

#call(env) ⇒ Object



11
12
13
14
# File 'lib/vagrant-proxmox/action/is_created.rb', line 11

def call env
	env[:result] = env[:machine].state.id != :not_created
	next_action env
end