Merge pull request #1411 from chorankates-sfdc/master
add Solaris detection to linux provider
This commit is contained in:
commit
e04efa155f
|
@ -30,6 +30,7 @@ module VagrantPlugins
|
|||
return :redhat if comm.test("cat /etc/redhat-release")
|
||||
return :suse if comm.test("cat /etc/SuSE-release")
|
||||
return :arch if comm.test("cat /etc/arch-release")
|
||||
return :solaris if comm.test("grep 'Solaris' /etc/release")
|
||||
end
|
||||
|
||||
# Can't detect the distro, assume vanilla linux
|
||||
|
|
Loading…
Reference in New Issue