class VagrantPlugins::Openstack::Action::StopServer
Public Class Methods
new(app, _env)
click to toggle source
# File lib/vagrant-openstack-provider/action/stop_server.rb, line 9 def initialize(app, _env) @app = app @logger = Log4r::Logger.new('vagrant_openstack::action::stop_server') end
Public Instance Methods
execute(env)
click to toggle source
# File lib/vagrant-openstack-provider/action/stop_server.rb, line 14 def execute(env) if env[:machine].id @logger.info "Stopping server #{env[:machine].id}..." env[:ui].info(I18n.t('vagrant_openstack.stopping_server')) env[:openstack_client].nova.stop_server(env, env[:machine].id) end @app.call(env) end