recognize solaris alternatives

As the Solaris project is dead, recognize that Solaris alternatives like DilOS and SmartOS feature a Solaris compatible kernel and capabilities.
This commit is contained in:
Andrew Pennebaker 2017-12-21 13:07:00 -06:00 committed by GitHub
parent eae5230b5d
commit 98eb8cef03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ module VagrantPlugins
module GuestSolaris11
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("uname -sr | grep 'SunOS 5.11'")
machine.communicate.test("uname -sr | grep 'SunOS.*5\\.11'")
end
end
end