Update CHANGELOG for GH-1639

This commit is contained in:
Mitchell Hashimoto 2013-04-22 20:29:17 -07:00
parent 1d971a2128
commit efcb25693e
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ IMPROVEMENTS:
a warning. [GH-1620] a warning. [GH-1620]
- Better locking around handling the `box_url` parameter for - Better locking around handling the `box_url` parameter for
parallel providers. parallel providers.
- Solaris guest is now properly detected on SmartOS, OmniOS, etc. [GH-1639]
BUG FIXES: BUG FIXES:

View File

@ -7,7 +7,7 @@ module VagrantPlugins
# Contributed by Blake Irvin <b.irvin@modcloth.com> # Contributed by Blake Irvin <b.irvin@modcloth.com>
class Guest < Vagrant.plugin("2", :guest) class Guest < Vagrant.plugin("2", :guest)
def detect?(machine) def detect?(machine)
machine.communicate.test("uname -o|grep Solaris") machine.communicate.test("uname -o | grep Solaris")
end end
end end
end end