16 lines
351 B
Ruby
16 lines
351 B
Ruby
# 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)
|
|
machine.communicate.test("grep 'Solaris 11' /etc/release")
|
|
end
|
|
end
|
|
end
|
|
end
|