From efcb25693eb698061dd7507ecae03c1c08507e69 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 22 Apr 2013 20:29:17 -0700 Subject: [PATCH] Update CHANGELOG for GH-1639 --- CHANGELOG.md | 1 + plugins/guests/solaris/guest.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 915f0709b..7fcee2054 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ IMPROVEMENTS: a warning. [GH-1620] - Better locking around handling the `box_url` parameter for parallel providers. + - Solaris guest is now properly detected on SmartOS, OmniOS, etc. [GH-1639] BUG FIXES: diff --git a/plugins/guests/solaris/guest.rb b/plugins/guests/solaris/guest.rb index 555ef23e7..e0eab6709 100644 --- a/plugins/guests/solaris/guest.rb +++ b/plugins/guests/solaris/guest.rb @@ -7,7 +7,7 @@ module VagrantPlugins # Contributed by Blake Irvin class Guest < Vagrant.plugin("2", :guest) def detect?(machine) - machine.communicate.test("uname -o|grep Solaris") + machine.communicate.test("uname -o | grep Solaris") end end end