2010-03-05 16:47:47 -08:00

13 lines
226 B
Ruby

module Vagrant
module Actions
module VM
class Down < Base
def prepare
@runner.add_action(Halt) if @runner.vm.running?
@runner.add_action(Destroy)
end
end
end
end
end