2014-03-10 11:52:55 -07:00

12 lines
235 B
Ruby

require "vagrant"
module VagrantPlugins
module GuestSmartos
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("cat /etc/release | grep -i SmartOS")
end
end
end
end