Class: VagrantPlugins::OpenStack::Action::MessageServerRunning

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-openstack-plugin/action/message_server_running.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ MessageServerRunning

Returns a new instance of MessageServerRunning.



5
6
7
# File 'lib/vagrant-openstack-plugin/action/message_server_running.rb', line 5

def initialize(app, env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
# File 'lib/vagrant-openstack-plugin/action/message_server_running.rb', line 9

def call(env)
  env[:ui].info(I18n.t("vagrant_openstack.server_running", name: env[:machine].name))
  @app.call(env)
end