Class: VagrantPlugins::Proxmox::Action::IsCreated
- Inherits:
-
ProxmoxAction
- Object
- ProxmoxAction
- VagrantPlugins::Proxmox::Action::IsCreated
- Defined in:
- lib/vagrant-proxmox/action/is_created.rb
Overview
set env to :is_created
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ IsCreated
constructor
A new instance of IsCreated.
Constructor Details
#initialize(app, env) ⇒ IsCreated
Returns a new instance of IsCreated.
8 9 10 |
# File 'lib/vagrant-proxmox/action/is_created.rb', line 8 def initialize app, env @app = app end |
Instance Method Details
#call(env) ⇒ Object
12 13 14 15 |
# File 'lib/vagrant-proxmox/action/is_created.rb', line 12 def call env env[:result] = env[:machine].state.id != :not_created next_action env end |