vagrant-vbguest-update 0.10.1.dev
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.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/CHANGELOG.md +209 -0
- data/Gemfile +11 -0
- data/LICENSE +21 -0
- data/Rakefile +11 -0
- data/Readme.md +267 -0
- data/lib/vagrant-vbguest.rb +57 -0
- data/lib/vagrant-vbguest/command.rb +95 -0
- data/lib/vagrant-vbguest/config.rb +51 -0
- data/lib/vagrant-vbguest/core_ext/string/interpolate.rb +110 -0
- data/lib/vagrant-vbguest/download.rb +28 -0
- data/lib/vagrant-vbguest/errors.rb +18 -0
- data/lib/vagrant-vbguest/hosts/base.rb +118 -0
- data/lib/vagrant-vbguest/hosts/virtualbox.rb +103 -0
- data/lib/vagrant-vbguest/installer.rb +121 -0
- data/lib/vagrant-vbguest/installers/base.rb +201 -0
- data/lib/vagrant-vbguest/installers/debian.rb +40 -0
- data/lib/vagrant-vbguest/installers/linux.rb +158 -0
- data/lib/vagrant-vbguest/installers/redhat.rb +29 -0
- data/lib/vagrant-vbguest/installers/ubuntu.rb +44 -0
- data/lib/vagrant-vbguest/machine.rb +105 -0
- data/lib/vagrant-vbguest/middleware.rb +43 -0
- data/lib/vagrant-vbguest/rebootable.rb +39 -0
- data/lib/vagrant-vbguest/vagrant_compat.rb +21 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_0/command.rb +17 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_0/download.rb +51 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_0/rebootable.rb +23 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_0/vm_compatible.rb +31 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_1/command.rb +18 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_1/download.rb +1 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_1/rebootable.rb +33 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_1/vm_compatible.rb +31 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_2/command.rb +1 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_2/download.rb +18 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_2/rebootable.rb +1 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_2/vm_compatible.rb +15 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_3/command.rb +1 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_3/download.rb +1 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_3/rebootable.rb +1 -0
- data/lib/vagrant-vbguest/vagrant_compat/vagrant_1_3/vm_compatible.rb +1 -0
- data/lib/vagrant-vbguest/version.rb +3 -0
- data/lib/vagrant_init.rb +38 -0
- data/locales/en.yml +63 -0
- data/vagrant-vbguest.gemspec +30 -0
- metadata +161 -0
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'vagrant-vbguest/download'
|
2
|
+
module VagrantVbguest
|
3
|
+
# This implementation is based on Action::Box::Download by vagrant
|
4
|
+
#
|
5
|
+
# This adoption does not run as a action/middleware, but is called manually
|
6
|
+
#
|
7
|
+
# MIT License - Mitchell Hashimoto and John Bender - https://github.com/mitchellh/vagrant
|
8
|
+
#
|
9
|
+
#
|
10
|
+
#
|
11
|
+
class Download < DownloadBase
|
12
|
+
|
13
|
+
include Vagrant::Util
|
14
|
+
|
15
|
+
def download!
|
16
|
+
if instantiate_downloader
|
17
|
+
File.open(@destination, Platform.tar_file_options) do |destination_file|
|
18
|
+
@downloader.download!(@source, destination_file)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
@destination
|
22
|
+
end
|
23
|
+
|
24
|
+
def instantiate_downloader
|
25
|
+
# Assign to a temporary variable since this is easier to type out,
|
26
|
+
# since it is used so many times.
|
27
|
+
classes = [Vagrant::Downloaders::HTTP, Vagrant::Downloaders::File]
|
28
|
+
|
29
|
+
# Find the class to use.
|
30
|
+
classes.each_index do |i|
|
31
|
+
klass = classes[i]
|
32
|
+
|
33
|
+
# Use the class if it matches the given URI or if this
|
34
|
+
# is the last class...
|
35
|
+
if classes.length == (i + 1) || klass.match?(@source)
|
36
|
+
@ui.info I18n.t("vagrant_vbguest.download.with", :class => klass.to_s)
|
37
|
+
@downloader = klass.new(@ui)
|
38
|
+
break
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
# This line should never be reached, but we'll keep this here
|
43
|
+
# just in case for now.
|
44
|
+
raise Errors::BoxDownloadUnknownType if !@downloader
|
45
|
+
|
46
|
+
@downloader.prepare(@source) if @downloader.respond_to?(:prepare)
|
47
|
+
true
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'vagrant-vbguest/rebootable'
|
2
|
+
|
3
|
+
module VagrantVbguest
|
4
|
+
module Helpers
|
5
|
+
|
6
|
+
module Rebootable
|
7
|
+
def reboot(vm, options)
|
8
|
+
if reboot? vm, options
|
9
|
+
@env[:action_runner].run(Vagrant::Action::VM::Halt, @env)
|
10
|
+
@env[:action_runner].run(Vagrant::Action::VM::Boot, @env)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
# executes the whole reboot process
|
15
|
+
def reboot!(vm, options)
|
16
|
+
if reboot? vm, options
|
17
|
+
vm.reload(options)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module VagrantVbguest
|
2
|
+
module Helpers
|
3
|
+
module VmCompatible
|
4
|
+
def communicate
|
5
|
+
vm.channel
|
6
|
+
end
|
7
|
+
|
8
|
+
def driver
|
9
|
+
vm.driver
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.included(base)
|
13
|
+
base.extend(ClassMethods)
|
14
|
+
end
|
15
|
+
|
16
|
+
module ClassMethods
|
17
|
+
def vm_id(vm)
|
18
|
+
vm.uuid
|
19
|
+
end
|
20
|
+
|
21
|
+
def communicate_to(vm)
|
22
|
+
vm.channel
|
23
|
+
end
|
24
|
+
|
25
|
+
def distro_name(vm)
|
26
|
+
vm.guest.distro_dispatch
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'vagrant-vbguest/command'
|
2
|
+
require Vagrant.source_root.join("plugins/commands/up/start_mixins")
|
3
|
+
|
4
|
+
module VagrantVbguest
|
5
|
+
|
6
|
+
class Command < Vagrant.plugin("2", :command)
|
7
|
+
include CommandCommons
|
8
|
+
include VagrantPlugins::CommandUp::StartMixins
|
9
|
+
|
10
|
+
def check_runable_on(vm)
|
11
|
+
raise Vagrant::Errors::VMNotCreatedError if vm.state.id == :not_created
|
12
|
+
raise Vagrant::Errors::VMInaccessible if vm.state.id == :inaccessible
|
13
|
+
raise Vagrant::Errors::VMNotRunningError if vm.state.id != :running
|
14
|
+
raise VagrantVbguest::NoVirtualBoxMachineError if vm.provider.class != VagrantPlugins::ProviderVirtualBox::Provider
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path("../../vagrant_1_0/download", __FILE__)
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'vagrant-vbguest/rebootable'
|
2
|
+
|
3
|
+
module VagrantVbguest
|
4
|
+
module Helpers
|
5
|
+
|
6
|
+
module Rebootable
|
7
|
+
def reboot(vm, options)
|
8
|
+
if reboot? vm, options
|
9
|
+
simle_reboot = Vagrant::Action::Builder.new.tap do |b|
|
10
|
+
b.use Vagrant::Action::Builtin::Call, Vagrant::Action::Builtin::GracefulHalt, :poweroff, :running do |env2, b2|
|
11
|
+
if !env2[:result]
|
12
|
+
b2.use VagrantPlugins::ProviderVirtualBox::Action::ForcedHalt
|
13
|
+
end
|
14
|
+
end
|
15
|
+
b.use VagrantPlugins::ProviderVirtualBox::Action::Boot
|
16
|
+
if defined?(Vagrant::Action::Builtin::WaitForCommunicator)
|
17
|
+
b.use Vagrant::Action::Builtin::WaitForCommunicator, [:starting, :running]
|
18
|
+
end
|
19
|
+
end
|
20
|
+
@env[:action_runner].run(simle_reboot, @env)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
# executes the whole reboot process
|
25
|
+
def reboot!(vm, options)
|
26
|
+
if reboot? vm, options
|
27
|
+
vm.action(:reload, options)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module VagrantVbguest
|
2
|
+
module Helpers
|
3
|
+
module VmCompatible
|
4
|
+
def communicate
|
5
|
+
vm.communicate
|
6
|
+
end
|
7
|
+
|
8
|
+
def driver
|
9
|
+
vm.provider.driver
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.included(base)
|
13
|
+
base.extend(ClassMethods)
|
14
|
+
end
|
15
|
+
|
16
|
+
module ClassMethods
|
17
|
+
def vm_id(vm)
|
18
|
+
vm.id
|
19
|
+
end
|
20
|
+
|
21
|
+
def communicate_to(vm)
|
22
|
+
vm.communicate
|
23
|
+
end
|
24
|
+
|
25
|
+
def distro_name(vm)
|
26
|
+
vm.guest.distro_dispatch
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path("../../vagrant_1_1/command", __FILE__)
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'vagrant-vbguest/download'
|
2
|
+
require "vagrant/util/downloader"
|
3
|
+
|
4
|
+
module VagrantVbguest
|
5
|
+
|
6
|
+
class Download < DownloadBase
|
7
|
+
|
8
|
+
def download!
|
9
|
+
downloader_options = {}
|
10
|
+
downloader_options[:ui] = @ui
|
11
|
+
@ui.info(I18n.t("vagrant_vbguest.download.started", :source => @source))
|
12
|
+
@downloader = Vagrant::Util::Downloader.new(@source, @destination, downloader_options)
|
13
|
+
@downloader.download!
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path("../../vagrant_1_1/rebootable", __FILE__)
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require File.expand_path("../../vagrant_1_1/vm_compatible", __FILE__)
|
2
|
+
module VagrantVbguest
|
3
|
+
module Helpers
|
4
|
+
module VmCompatible
|
5
|
+
def self.included(base)
|
6
|
+
base.extend(ClassMethods)
|
7
|
+
end
|
8
|
+
module ClassMethods
|
9
|
+
def distro_name(vm)
|
10
|
+
vm.guest.name
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path("../../vagrant_1_2/command", __FILE__)
|
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path("../../vagrant_1_2/download", __FILE__)
|
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path("../../vagrant_1_2/rebootable", __FILE__)
|
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path("../../vagrant_1_2/vm_compatible", __FILE__)
|
data/lib/vagrant_init.rb
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# This file is automatically loaded by Vagrant < 1.1
|
2
|
+
# to load any plugins. This file kicks off this plugin.
|
3
|
+
begin
|
4
|
+
require "vagrant"
|
5
|
+
rescue LoadError
|
6
|
+
raise "The Vagrant VBGuest plugin must be run within Vagrant."
|
7
|
+
end
|
8
|
+
|
9
|
+
require 'vagrant-vbguest/core_ext/string/interpolate'
|
10
|
+
|
11
|
+
require "vagrant-vbguest/errors"
|
12
|
+
require 'vagrant-vbguest/vagrant_compat'
|
13
|
+
|
14
|
+
require 'vagrant-vbguest/machine'
|
15
|
+
|
16
|
+
require 'vagrant-vbguest/hosts/base'
|
17
|
+
require 'vagrant-vbguest/hosts/virtualbox'
|
18
|
+
|
19
|
+
require 'vagrant-vbguest/installer'
|
20
|
+
require 'vagrant-vbguest/installers/base'
|
21
|
+
require 'vagrant-vbguest/installers/linux'
|
22
|
+
require 'vagrant-vbguest/installers/debian'
|
23
|
+
require 'vagrant-vbguest/installers/ubuntu'
|
24
|
+
require 'vagrant-vbguest/installers/redhat'
|
25
|
+
|
26
|
+
require 'vagrant-vbguest/config'
|
27
|
+
require 'vagrant-vbguest/command'
|
28
|
+
require 'vagrant-vbguest/middleware'
|
29
|
+
|
30
|
+
Vagrant.config_keys.register(:vbguest) { VagrantVbguest::Config }
|
31
|
+
|
32
|
+
Vagrant.commands.register(:vbguest) { VagrantVbguest::Command }
|
33
|
+
|
34
|
+
Vagrant.actions[:start].use VagrantVbguest::Middleware
|
35
|
+
|
36
|
+
# Add our custom translations to the load path
|
37
|
+
I18n.load_path << File.expand_path("../../locales/en.yml", __FILE__)
|
38
|
+
|
data/locales/en.yml
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
en:
|
2
|
+
vagrant_vbguest:
|
3
|
+
skipped_installation: "Updating GuestAdditions skipped."
|
4
|
+
skipped_rebuild: "Rebuilding GuestAdditions skipped."
|
5
|
+
installing: "Installing Virtualbox Guest Additions %{installer_version} - guest version is %{guest_version}"
|
6
|
+
installing_forced: "Forcing installation of Virtualbox Guest Additions %{installer_version} - guest version is %{guest_version}"
|
7
|
+
rebuild: "Rebuilding Virtualbox Guest Additions %{guest_version} (Your host version is %{host_version})"
|
8
|
+
rebuild_forced: "Forcing rebuilding of Virtualbox Guest Additions %{guest_version} (Your host version is %{host_version})"
|
9
|
+
install_error: |-
|
10
|
+
An error occurred during installation of VirtualBox Guest Additions %{installer_version}. Some functionality may not work as intended.
|
11
|
+
In most cases it is OK that the "Window System drivers" installation failed.
|
12
|
+
start_copy_iso: "Copy iso file %{from} into the box %{to}"
|
13
|
+
restart_vm: "Restarting VM to apply changes..."
|
14
|
+
suggest_restart: "Guest Additions got installed. However, they seem not be loaded correctly. Please restart the box running `vagrant reload %{name}`"
|
15
|
+
restart_loop_guard_activated: "Guest Additions will not load, even after reboot."
|
16
|
+
machine_loop_guard: "Could not execute %{command} from current state %{state}. To prevent running in circles, we'll stop."
|
17
|
+
guest_version_reports_differ: |-
|
18
|
+
Got different reports about installed GuestAdditions version:
|
19
|
+
Virtualbox on your host claims: %{driver}
|
20
|
+
VBoxService inside the vm claims: %{service}
|
21
|
+
Going on, assuming VBoxService is correct...
|
22
|
+
vagrant_11_reload_issues: |-
|
23
|
+
This version of vagrant has issues with reloading boxes. `auto_reboot` got disabled as a precaution.
|
24
|
+
Expect errors and run `vagrant halt` and `vagrant up` instead of `vagrant reload`!
|
25
|
+
unknown: unknown
|
26
|
+
|
27
|
+
status:
|
28
|
+
clean: "No installation found."
|
29
|
+
unmatched: "GuestAdditions versions on your host (%{host_version}) and guest (%{guest_version}) do not match."
|
30
|
+
not_running: "GuestAdditions seems to be installed (%{guest_version}) correctly, but not running."
|
31
|
+
ok: "GuestAdditions %{guest_version} running --- OK."
|
32
|
+
|
33
|
+
errors:
|
34
|
+
autodetect_iso_path: |-
|
35
|
+
Could not locate a local Virtualbox Guest Additions iso file.
|
36
|
+
Please configure a local path to the iso using `config.vbguest.iso_path`
|
37
|
+
in your Vagrantfile or the `--iso` command line option.
|
38
|
+
If you think this is a bug and vbguest could have guessed the iso_path,
|
39
|
+
please file an issue at: https://github.com/dotless-de/vagrant-vbguest/issues
|
40
|
+
|
41
|
+
downloading_disabled: |-
|
42
|
+
Could not locate a local Virtualbox Guest Additions iso file.
|
43
|
+
However, the no_remote option was set and thus I will not download it from
|
44
|
+
%{from}
|
45
|
+
Please configure a local path to the iso using `config.vbguest.iso_path`
|
46
|
+
in your Vagrantfile or the `--iso` command line option.
|
47
|
+
|
48
|
+
no_virtualbox_machine: |-
|
49
|
+
The VBGuest plugin must be used with VirtualBox Machines only.
|
50
|
+
|
51
|
+
installer:
|
52
|
+
no_installer_for_platform: |-
|
53
|
+
Sorry, don't know how to %{method} Virtualbox Guest Additions on this platform. Stopping installation.
|
54
|
+
generic_linux_installer: |-
|
55
|
+
The guest's platform is currently not supported, will try generic Linux method...
|
56
|
+
do_not_inherit_match_method: |-
|
57
|
+
Installer classes must provide their own `match?` method.
|
58
|
+
|
59
|
+
download:
|
60
|
+
started: "Downloading VirtualBox Guest Additions ISO from %{source}"
|
61
|
+
with: "Downloading VirtualBox Guest Additions ISO with %{class}..."
|
62
|
+
cleaning: "Cleaning up downloaded VirtualBox Guest Additions ISO..."
|
63
|
+
unknown_type: "Unknown or unsupported URI type given for VirtualBox Guest Additions ISO download."
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/vagrant-vbguest/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "vagrant-vbguest-update"
|
6
|
+
s.version = VagrantVbguest::VERSION
|
7
|
+
s.platform = Gem::Platform::RUBY
|
8
|
+
s.authors = ["Robert Schulze", "Gia Bao"]
|
9
|
+
s.email = ["robert@dotless.de", "giabao@sandinh.net"]
|
10
|
+
s.license = 'MIT'
|
11
|
+
s.homepage = "https://github.com/giabao/vagrant-vbguest"
|
12
|
+
s.summary = %q{A Vagrant plugin to install the VirtualBoxAdditions into the guest VM}
|
13
|
+
s.description = %q{A Vagrant plugin which automatically installs the host's VirtualBox Guest Additions on the guest system.}
|
14
|
+
|
15
|
+
s.required_rubygems_version = ">= 1.3.6"
|
16
|
+
|
17
|
+
s.add_dependency "micromachine", "~> 1.1.0"
|
18
|
+
s.add_development_dependency "bundler", ">= 1.2.0"
|
19
|
+
|
20
|
+
# those should be satisfied by vagrant
|
21
|
+
s.add_dependency "i18n"
|
22
|
+
s.add_dependency "log4r"
|
23
|
+
s.add_development_dependency "rake"
|
24
|
+
|
25
|
+
s.files = `git ls-files`.split("\n")
|
26
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
27
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
28
|
+
s.require_paths = ["lib"]
|
29
|
+
|
30
|
+
end
|
metadata
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vagrant-vbguest-update
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.10.1.dev
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Robert Schulze
|
8
|
+
- Gia Bao
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2015-09-29 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: micromachine
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ~>
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 1.1.0
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 1.1.0
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: bundler
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - '>='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 1.2.0
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 1.2.0
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: i18n
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: log4r
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - '>='
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: rake
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
type: :development
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - '>='
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
description: A Vagrant plugin which automatically installs the host's VirtualBox Guest
|
85
|
+
Additions on the guest system.
|
86
|
+
email:
|
87
|
+
- robert@dotless.de
|
88
|
+
- giabao@sandinh.net
|
89
|
+
executables: []
|
90
|
+
extensions: []
|
91
|
+
extra_rdoc_files: []
|
92
|
+
files:
|
93
|
+
- .gitignore
|
94
|
+
- CHANGELOG.md
|
95
|
+
- Gemfile
|
96
|
+
- LICENSE
|
97
|
+
- Rakefile
|
98
|
+
- Readme.md
|
99
|
+
- lib/vagrant-vbguest.rb
|
100
|
+
- lib/vagrant-vbguest/command.rb
|
101
|
+
- lib/vagrant-vbguest/config.rb
|
102
|
+
- lib/vagrant-vbguest/core_ext/string/interpolate.rb
|
103
|
+
- lib/vagrant-vbguest/download.rb
|
104
|
+
- lib/vagrant-vbguest/errors.rb
|
105
|
+
- lib/vagrant-vbguest/hosts/base.rb
|
106
|
+
- lib/vagrant-vbguest/hosts/virtualbox.rb
|
107
|
+
- lib/vagrant-vbguest/installer.rb
|
108
|
+
- lib/vagrant-vbguest/installers/base.rb
|
109
|
+
- lib/vagrant-vbguest/installers/debian.rb
|
110
|
+
- lib/vagrant-vbguest/installers/linux.rb
|
111
|
+
- lib/vagrant-vbguest/installers/redhat.rb
|
112
|
+
- lib/vagrant-vbguest/installers/ubuntu.rb
|
113
|
+
- lib/vagrant-vbguest/machine.rb
|
114
|
+
- lib/vagrant-vbguest/middleware.rb
|
115
|
+
- lib/vagrant-vbguest/rebootable.rb
|
116
|
+
- lib/vagrant-vbguest/vagrant_compat.rb
|
117
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_0/command.rb
|
118
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_0/download.rb
|
119
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_0/rebootable.rb
|
120
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_0/vm_compatible.rb
|
121
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_1/command.rb
|
122
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_1/download.rb
|
123
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_1/rebootable.rb
|
124
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_1/vm_compatible.rb
|
125
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_2/command.rb
|
126
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_2/download.rb
|
127
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_2/rebootable.rb
|
128
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_2/vm_compatible.rb
|
129
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_3/command.rb
|
130
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_3/download.rb
|
131
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_3/rebootable.rb
|
132
|
+
- lib/vagrant-vbguest/vagrant_compat/vagrant_1_3/vm_compatible.rb
|
133
|
+
- lib/vagrant-vbguest/version.rb
|
134
|
+
- lib/vagrant_init.rb
|
135
|
+
- locales/en.yml
|
136
|
+
- vagrant-vbguest.gemspec
|
137
|
+
homepage: https://github.com/giabao/vagrant-vbguest
|
138
|
+
licenses:
|
139
|
+
- MIT
|
140
|
+
metadata: {}
|
141
|
+
post_install_message:
|
142
|
+
rdoc_options: []
|
143
|
+
require_paths:
|
144
|
+
- lib
|
145
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - '>='
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0'
|
150
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
|
+
requirements:
|
152
|
+
- - '>='
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: 1.3.6
|
155
|
+
requirements: []
|
156
|
+
rubyforge_project:
|
157
|
+
rubygems_version: 2.0.14
|
158
|
+
signing_key:
|
159
|
+
specification_version: 4
|
160
|
+
summary: A Vagrant plugin to install the VirtualBoxAdditions into the guest VM
|
161
|
+
test_files: []
|