Sha256: 900c31e33923982a8277c3c96ef0d02847edfc5ece6155862b9199ca39a141c2
Contents?: true
Size: 464 Bytes
Versions: 20
Compression:
Stored size: 464 Bytes
Contents
require 'vagrant-vbguest/command' require 'vagrant/command/start_mixins' module VagrantVbguest class Command < Vagrant::Command::Base include CommandCommons include Vagrant::Command::StartMixins def check_runable_on(vm) raise Vagrant::Errors::VMNotCreatedError if !vm.created? raise Vagrant::Errors::VMInaccessible if !vm.state == :inaccessible raise Vagrant::Errors::VMNotRunningError if vm.state != :running end end end
Version data entries
20 entries across 20 versions & 2 rubygems