2013-01-30 10:54:53 -08:00

14 lines
272 B
Ruby

require "vagrant"
require Vagrant.source_root.join("plugins/guests/linux/guest")
module VagrantPlugins
module GuestOpenBSD
class Guest < VagrantPlugins::GuestLinux::Guest
def halt
vm.communicate.sudo("shutdown -p -h now")
end
end
end
end