12 lines
212 B
Ruby

module Vagrant
module Actions
module VM
class Stop < Base
def execute!
logger.info "Forcing shutdown of VM..."
@runner.vm.stop(true)
end
end
end
end
end