vagrant/plugins/guests/bsd/guest.rb

10 lines
202 B
Ruby

module VagrantPlugins
module GuestBSD
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("uname -s | grep -i 'BSD'")
end
end
end
end