vagrant-vbguest 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +5 -0
- data/lib/vagrant-vbguest/installers/linux.rb +2 -2
- data/lib/vagrant-vbguest/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG.md
CHANGED
|
@@ -23,7 +23,7 @@ module VagrantVbguest
|
|
|
23
23
|
# a more specific distributen like 'ubuntu' or 'arch' and
|
|
24
24
|
# therefore should do a more specific check.
|
|
25
25
|
def self.match?(vm)
|
|
26
|
-
raise Error, :_key => :do_not_inherit_match_method if self
|
|
26
|
+
raise Error, :_key => :do_not_inherit_match_method if self != Linux
|
|
27
27
|
vm.channel.test("uname | grep 'Linux'")
|
|
28
28
|
end
|
|
29
29
|
|
|
@@ -44,7 +44,7 @@ module VagrantVbguest
|
|
|
44
44
|
# @yieldparam [String] type Type of the output, `:stdout`, `:stderr`, etc.
|
|
45
45
|
# @yieldparam [String] data Data for the given output.
|
|
46
46
|
def install(opts=nil, &block)
|
|
47
|
-
vm.ui.warn I18n.t("vagrant.plugins.vbguest.installer.generic_linux_installer") if self.class == Linux
|
|
47
|
+
vm.ui.warn I18n.t("vagrant.plugins.vbguest.errors.installer.generic_linux_installer") if self.class == Linux
|
|
48
48
|
upload(iso_file)
|
|
49
49
|
mount_iso(opts, &block)
|
|
50
50
|
execute_installer(opts, &block)
|