2013-04-30 22:07:34 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
2013-05-02 02:02:00 +00:00
|
|
|
module GuestOmniOS
|
2013-04-30 22:07:34 +00:00
|
|
|
class Guest < Vagrant.plugin("2", :guest)
|
|
|
|
def detect?(machine)
|
2013-05-02 02:02:00 +00:00
|
|
|
machine.communicate.test("cat /etc/release | grep -i OmniOS")
|
2013-04-30 22:07:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|