vagrant/plugins/guests/solaris11/guest.rb

16 lines
350 B
Ruby
Raw Normal View History

2013-08-14 14:10:18 +00:00
# A general Vagrant system implementation for "solaris 11".
#
# Contributed by Jan Thomas Moldung <janth@moldung.no>
require "vagrant"
module VagrantPlugins
module GuestSolaris11
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
2014-01-14 14:56:01 +00:00
machine.communicate.test("uname -sr | grep 'SunOS 5.11'")
2013-08-14 14:10:18 +00:00
end
end
end
end