Class: VagrantPlugins::Proxmox::Action::MessageAlreadyStopped

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

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ MessageAlreadyStopped

Returns a new instance of MessageAlreadyStopped.



7
8
9
# File 'lib/vagrant-proxmox/action/message_already_stopped.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/message_already_stopped.rb', line 11

def call env
	env[:ui].info I18n.t('vagrant_proxmox.already_stopped')
	next_action env
end