vagrant-vbguest 0.6.1 → 0.6.2
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/machine.rb +3 -3
- data/lib/vagrant-vbguest/version.rb +1 -1
- data/locales/en.yml +10 -10
- metadata +2 -2
data/CHANGELOG.md
CHANGED
@@ -32,7 +32,7 @@ module VagrantVbguest
|
|
32
32
|
while (command = runlist.shift)
|
33
33
|
@logger.debug("Running command #{command} from runlist")
|
34
34
|
if !self.send(command)
|
35
|
-
vm.ui.error('vagrant.plugins.vbguest.
|
35
|
+
vm.ui.error('vagrant.plugins.vbguest.machine_loop_guard', :command => command, :state => current_state)
|
36
36
|
return false
|
37
37
|
end
|
38
38
|
return run if current_state != state
|
@@ -41,12 +41,12 @@ module VagrantVbguest
|
|
41
41
|
end
|
42
42
|
|
43
43
|
def install
|
44
|
-
return @vm.ui.warn(I18n.t("vagrant.plugins.vbguest.
|
44
|
+
return @vm.ui.warn(I18n.t("vagrant.plugins.vbguest.skipped_installation")) if options[:no_install] && !options[:force]
|
45
45
|
@ga_machine.trigger :install
|
46
46
|
end
|
47
47
|
|
48
48
|
def rebuild
|
49
|
-
return @vm.ui.warn(I18n.t("vagrant.plugins.vbguest.
|
49
|
+
return @vm.ui.warn(I18n.t("vagrant.plugins.vbguest.skipped_rebuild")) if options[:no_install] && !options[:force]
|
50
50
|
@ga_machine.trigger :rebuild
|
51
51
|
end
|
52
52
|
|
data/locales/en.yml
CHANGED
@@ -2,17 +2,17 @@ en:
|
|
2
2
|
vagrant:
|
3
3
|
plugins:
|
4
4
|
vbguest:
|
5
|
-
|
6
|
-
|
5
|
+
skipped_installation: "Updating GuestAdditions skipped."
|
6
|
+
skipped_rebuild: "Rebuilding GuestAdditions skipped."
|
7
7
|
installing: "Installing Virtualbox Guest Additions %{installer_version} - guest version is %{guest_version}"
|
8
8
|
installing_forced: "Forcing installation of Virtualbox Guest Additions %{installer_version} - guest version is %{guest_version}"
|
9
9
|
rebuild: "Rebuilding Virtualbox Guest Additions %{guest_version} (Your host version is %{host_version})"
|
10
10
|
rebuild_forced: "Forcing rebuilding of Virtualbox Guest Additions %{guest_version} (Your host version is %{host_version})"
|
11
11
|
start_copy_iso: "Copy iso file %{from} into the box %{to}"
|
12
12
|
restart_vm: "Restarting VM to apply changes..."
|
13
|
-
suggest_restart: "Guest Additions got installed. However, they seem not be loaded correctly. Please restart the box
|
13
|
+
suggest_restart: "Guest Additions got installed. However, they seem not be loaded correctly. Please restart the box running `vagrant reload %{name}`"
|
14
14
|
restart_loop_guard_activated: "Guest Additions will not load, even after reboot."
|
15
|
-
|
15
|
+
machine_loop_guard: "Could not execute %{command} from current state %{state}. To prevent running in circles, we'll stop."
|
16
16
|
guest_version_reports_differ: |-
|
17
17
|
Got different reports about installed GuestAdditions version:
|
18
18
|
Virtualbox on your host claims: %{driver}
|
@@ -28,17 +28,17 @@ en:
|
|
28
28
|
|
29
29
|
errors:
|
30
30
|
autodetect_iso_path: |-
|
31
|
-
Could not
|
32
|
-
Please configure a local path to the iso using `config.vbguest.iso_path`
|
31
|
+
Could not locate a local Virtualbox Guest Additions iso file.
|
32
|
+
Please configure a local path to the iso using `config.vbguest.iso_path`
|
33
33
|
in your Vagrantfile or the `--iso` command line option.
|
34
34
|
If you think this is a bug and vbguest could have guessed the iso_path,
|
35
|
-
please file
|
35
|
+
please file an issue at: https://github.com/dotless-de/vagrant-vbguest/issues
|
36
36
|
|
37
37
|
downloading_disabled: |-
|
38
38
|
Could not locate a local Virtualbox Guest Additions iso file.
|
39
|
-
However, the no_remote option was set and thus I will not
|
39
|
+
However, the no_remote option was set and thus I will not download it from
|
40
40
|
%{from}
|
41
|
-
Please configure a local path to the iso using `config.vbguest.iso_path`
|
41
|
+
Please configure a local path to the iso using `config.vbguest.iso_path`
|
42
42
|
in your Vagrantfile or the `--iso` command line option.
|
43
43
|
|
44
44
|
installer:
|
@@ -47,7 +47,7 @@ en:
|
|
47
47
|
generic_linux_installer: |-
|
48
48
|
The guest's platform is currently not supported, will try generic Linux method...
|
49
49
|
do_not_inherit_match_method: |-
|
50
|
-
Installer classes must
|
50
|
+
Installer classes must provide their own `match?` method.
|
51
51
|
|
52
52
|
download:
|
53
53
|
with: "Downloading VirtualBox Guest Additions ISO with %{class}..."
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-vbguest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-01-
|
12
|
+
date: 2013-01-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: micromachine
|