vagrantup 0.8.6 → 0.8.7
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 +4 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile +3 -7
- data/Rakefile +2 -2
- data/lib/vagrant/action/vm/forward_ports.rb +4 -1
- data/lib/vagrant/data_store.rb +6 -1
- data/lib/vagrant/errors.rb +0 -5
- data/lib/vagrant/provisioners/chef_solo.rb +3 -3
- data/lib/vagrant/version.rb +1 -1
- data/templates/locales/en.yml +6 -5
- data/test/{locales → unit/locales}/en.yml +0 -0
- data/test/{test_helper.rb → unit/test_helper.rb} +0 -0
- data/test/{vagrant → unit/vagrant}/action/box/destroy_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/box/download_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/box/package_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/box/unpackage_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/box/verify_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/builder_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/env/set_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/environment_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/general/package_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/general/validate_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/boot_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/check_accessible_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/check_box_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/check_guest_additions_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/clean_machine_folder_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/clear_forwarded_ports_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/clear_nfs_exports_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/clear_shared_folders_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/customize_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/destroy_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/destroy_unused_network_interfaces_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/discard_state_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/export_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/forward_ports_helpers_test.rb +7 -0
- data/test/{vagrant → unit/vagrant}/action/vm/forward_ports_test.rb +7 -10
- data/test/{vagrant → unit/vagrant}/action/vm/halt_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/host_name_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/import_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/match_mac_address_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/modify_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/network_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/nfs_helpers_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/nfs_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/package_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/package_vagrantfile_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/provision_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/provisioner_cleanup_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/resume_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/share_folders_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/vm/suspend_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action/warden_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/action_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/box_collection_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/box_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/cli_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/command/base_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/command/group_base_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/command/helpers_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/command/package_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/config/base_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/config/error_recorder_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/config/ssh_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/config/vagrant_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/config/vm/provisioner_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/config/vm_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/config_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/data_store_test.rb +8 -0
- data/test/{vagrant → unit/vagrant}/downloaders/base_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/downloaders/file_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/downloaders/http_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/environment_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/errors_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/hosts/base_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/hosts/bsd_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/hosts/linux_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/plugin_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/provisioners/base_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/provisioners/chef_client_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/provisioners/chef_solo_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/provisioners/chef_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/provisioners/puppet_server_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/provisioners/puppet_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/provisioners/shell_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/ssh/session_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/ssh_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/systems/base_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/systems/linux_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/ui_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/util/busy_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/util/counter_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/util/hash_with_indifferent_access_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/util/platform_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/util/retryable_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/util/stacked_proc_runner_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/util/template_renderer_test.rb +0 -0
- data/test/{vagrant → unit/vagrant}/vm_test.rb +9 -0
- data/vagrant.gemspec +2 -2
- metadata +97 -97
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7eefe12b5c2784101ad10fc9cd770562a6bcd757
|
|
4
|
+
data.tar.gz: 709bdea9d480f6865dad015ecab9d384d9d9f4ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0656751d00a0b1d0684be40c3778dd634bb4ac6b726a07cb919498d432479ecab02dbe11d6814e447f5f597d07bfaee3831a37d66050484d8b048006a89ff68e
|
|
7
|
+
data.tar.gz: 6ba1924a2df5747422d40629586f66ee3dbaadb716156946c441382b336296f1ab389783b11d2da4151e2edb72f8a818d7bcfc9b78a18a650b5872223861f908
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## 0.8.7 (September 13, 2011)
|
|
2
|
+
|
|
3
|
+
- Fix regression with remote paths from chef-solo. [GH-431]
|
|
4
|
+
- Fix issue where Vagrant crashes if `.vagrant` file becomes invalid. [GH-496]
|
|
5
|
+
- Issue a warning instead of an error for attempting to forward a port
|
|
6
|
+
<= 1024. [GH-487]
|
|
7
|
+
|
|
1
8
|
## 0.8.6 (August 28, 2011)
|
|
2
9
|
|
|
3
10
|
- Fix issue with download progress not properly clearing the line. [GH-476]
|
data/Gemfile
CHANGED
|
@@ -3,19 +3,15 @@ platform = RbConfig::CONFIG["host_os"].downcase
|
|
|
3
3
|
|
|
4
4
|
source "http://rubygems.org"
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
gemspec
|
|
7
7
|
|
|
8
8
|
# Use the following gems straight from git, since Vagrant dev
|
|
9
9
|
# typically coincides with it
|
|
10
10
|
gem "virtualbox", :git => "git://github.com/mitchellh/virtualbox.git"
|
|
11
11
|
|
|
12
12
|
if platform.include?("mingw") || platform.include?("mswin")
|
|
13
|
+
# JRuby requires these gems for development, but only
|
|
14
|
+
# on windows.
|
|
13
15
|
gem "jruby-openssl", "~> 0.7.4", :platforms => :jruby
|
|
14
16
|
gem "jruby-win32ole", "~> 0.8.5", :platforms => :jruby
|
|
15
17
|
end
|
|
16
|
-
|
|
17
|
-
group :test do
|
|
18
|
-
gem "rake"
|
|
19
|
-
gem "contest", ">= 0.1.2"
|
|
20
|
-
gem "mocha"
|
|
21
|
-
end
|
data/Rakefile
CHANGED
|
@@ -23,7 +23,10 @@ module Vagrant
|
|
|
23
23
|
# 1024, which causes the forwarded ports to fail.
|
|
24
24
|
def threshold_check
|
|
25
25
|
@env.env.config.vm.forwarded_ports.each do |name, options|
|
|
26
|
-
|
|
26
|
+
if options[:hostport] <= 1024
|
|
27
|
+
@env.ui.warn I18n.t("vagrant.actions.vm.forward_ports.privileged_ports")
|
|
28
|
+
return
|
|
29
|
+
end
|
|
27
30
|
end
|
|
28
31
|
end
|
|
29
32
|
|
data/lib/vagrant/data_store.rb
CHANGED
|
@@ -23,7 +23,12 @@ module Vagrant
|
|
|
23
23
|
|
|
24
24
|
if File.exist?(file_path)
|
|
25
25
|
File.open(file_path, "r") do |f|
|
|
26
|
-
|
|
26
|
+
begin
|
|
27
|
+
merge!(JSON.parse(f.read))
|
|
28
|
+
rescue JSON::ParserError
|
|
29
|
+
# Ignore if the data is invalid in the file.
|
|
30
|
+
# TODO: Log here.
|
|
31
|
+
end
|
|
27
32
|
end
|
|
28
33
|
end
|
|
29
34
|
end
|
data/lib/vagrant/errors.rb
CHANGED
|
@@ -168,11 +168,6 @@ module Vagrant
|
|
|
168
168
|
error_key(:auto_empty, "vagrant.actions.vm.forward_ports")
|
|
169
169
|
end
|
|
170
170
|
|
|
171
|
-
class ForwardPortBelowThreshold < VagrantError
|
|
172
|
-
status_code(25)
|
|
173
|
-
error_key(:below_threshold_error, "vagrant.actions.vm.forward_ports")
|
|
174
|
-
end
|
|
175
|
-
|
|
176
171
|
class ForwardPortCollision < VagrantError
|
|
177
172
|
status_code(26)
|
|
178
173
|
error_key(:collision_error, "vagrant.actions.vm.forward_ports")
|
|
@@ -74,9 +74,9 @@ module Vagrant
|
|
|
74
74
|
# Path exists on the host, setup the remote path
|
|
75
75
|
remote_path = "#{config.provisioning_path}/chef-solo-#{get_and_update_counter(:cookbooks_path)}"
|
|
76
76
|
else
|
|
77
|
-
# Path already exists on the virtual machine
|
|
78
|
-
#
|
|
79
|
-
remote_path = path
|
|
77
|
+
# Path already exists on the virtual machine. Expand it
|
|
78
|
+
# relative to where we're provisioning.
|
|
79
|
+
remote_path = File.expand_path(path, config.provisioning_path)
|
|
80
80
|
end
|
|
81
81
|
|
|
82
82
|
# Return the result
|
data/lib/vagrant/version.rb
CHANGED
data/templates/locales/en.yml
CHANGED
|
@@ -314,11 +314,6 @@ en:
|
|
|
314
314
|
|
|
315
315
|
VM: %{vm_name}
|
|
316
316
|
Forwarded port: %{name} (%{guest_port} => %{host_port})
|
|
317
|
-
below_threshold_error: |-
|
|
318
|
-
The host port of all forwarded ports must be above 1024. VirtualBox
|
|
319
|
-
does not allow host ports to be below 1024. (Guest ports below 1024
|
|
320
|
-
are fine. For example: SSH on port 22 on the guest can be forwarded
|
|
321
|
-
to port 2222, but not 222).
|
|
322
317
|
collision_error: |-
|
|
323
318
|
Vagrant cannot forward the specified ports on this VM, since they
|
|
324
319
|
would collide with another VirtualBox virtual machine's forwarded
|
|
@@ -336,6 +331,12 @@ en:
|
|
|
336
331
|
non_nat: |-
|
|
337
332
|
VirtualBox adapter #%{adapter} not configured as "NAT"
|
|
338
333
|
Skipping port forwarding '%{name}'.
|
|
334
|
+
privileged_ports: |-
|
|
335
|
+
You are trying to forward to privileged ports (ports <= 1024). Most
|
|
336
|
+
operating systems restrict this to only privileged process (typically
|
|
337
|
+
processes running as an administrative user). This is a warning in case
|
|
338
|
+
the port forwarding doesn't work. If any problems occur, please try a
|
|
339
|
+
port higher than 1024.
|
|
339
340
|
halt:
|
|
340
341
|
force: Forcing shutdown of VM...
|
|
341
342
|
host_name:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -27,6 +27,7 @@ class ForwardPortsHelpersVMActionTest < Test::Unit::TestCase
|
|
|
27
27
|
def mock_vm(options={})
|
|
28
28
|
options = {
|
|
29
29
|
:running? => true,
|
|
30
|
+
:accessible? => true,
|
|
30
31
|
:uuid => :foo
|
|
31
32
|
}.merge(options)
|
|
32
33
|
|
|
@@ -50,6 +51,12 @@ class ForwardPortsHelpersVMActionTest < Test::Unit::TestCase
|
|
|
50
51
|
@instance.used_ports
|
|
51
52
|
end
|
|
52
53
|
|
|
54
|
+
should "ignore VMs which aren't accessible" do
|
|
55
|
+
@vms << mock_vm(:accessible? => false)
|
|
56
|
+
@vms[0].expects(:forwarded_ports).never
|
|
57
|
+
@instance.used_ports
|
|
58
|
+
end
|
|
59
|
+
|
|
53
60
|
should "ignore VMs of the same uuid" do
|
|
54
61
|
@vms << mock_vm(:uuid => @vm.uuid)
|
|
55
62
|
@vms[0].expects(:forwarded_ports).never
|
|
@@ -22,24 +22,21 @@ class ForwardPortsVMActionTest < Test::Unit::TestCase
|
|
|
22
22
|
context "checking for threshold" do
|
|
23
23
|
setup do
|
|
24
24
|
@klass.any_instance.stubs(:external_collision_check)
|
|
25
|
+
@env.env.config.vm.forwarded_ports.clear
|
|
25
26
|
end
|
|
26
27
|
|
|
27
|
-
should "
|
|
28
|
-
@env.env.config.vm.forwarded_ports.clear
|
|
28
|
+
should "issue a warning for ports less than 1024" do
|
|
29
29
|
@env.env.config.vm.forward_port("foo", 22, 222)
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
31
|
+
@env.ui.expects(:warn).once
|
|
32
|
+
@klass.new(@app, @env)
|
|
34
33
|
end
|
|
35
34
|
|
|
36
|
-
should "not
|
|
37
|
-
@env.env.config.vm.forwarded_ports.clear
|
|
35
|
+
should "not issue a warning for ports greater than 1024" do
|
|
38
36
|
@env.env.config.vm.forward_port("foo", 22, 2222)
|
|
39
37
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
38
|
+
@env.ui.expects(:warn).never
|
|
39
|
+
@klass.new(@app, @env)
|
|
43
40
|
end
|
|
44
41
|
end
|
|
45
42
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -23,6 +23,14 @@ class DataStoreTest < Test::Unit::TestCase
|
|
|
23
23
|
}
|
|
24
24
|
end
|
|
25
25
|
|
|
26
|
+
should "initialize just fine if the db file contains invalid data" do
|
|
27
|
+
file = tmp_path.join("data_store_empty_test")
|
|
28
|
+
File.open(file, "w") { |f| f.write("") }
|
|
29
|
+
|
|
30
|
+
instance = @klass.new(file)
|
|
31
|
+
assert instance.length == 0
|
|
32
|
+
end
|
|
33
|
+
|
|
26
34
|
should "be a hash with indifferent access" do
|
|
27
35
|
assert @instance.is_a?(Vagrant::Util::HashWithIndifferentAccess)
|
|
28
36
|
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -262,6 +262,7 @@ class VMTest < Test::Unit::TestCase
|
|
|
262
262
|
setup do
|
|
263
263
|
@mock_vm.stubs(:running?).returns(false)
|
|
264
264
|
@mock_vm.stubs(:saved?).returns(false)
|
|
265
|
+
@mock_vm.stubs(:accessible?).returns(true)
|
|
265
266
|
end
|
|
266
267
|
|
|
267
268
|
should "not do anything if the VM is already running" do
|
|
@@ -286,6 +287,14 @@ class VMTest < Test::Unit::TestCase
|
|
|
286
287
|
@vm.env.actions.expects(:run).with(:start, :foo => :bar).once
|
|
287
288
|
@vm.start(:foo => :bar)
|
|
288
289
|
end
|
|
290
|
+
|
|
291
|
+
should "raise an exception if the VM is not accessible" do
|
|
292
|
+
@mock_vm.stubs(:accessible?).returns(false)
|
|
293
|
+
|
|
294
|
+
assert_raises(Vagrant::Errors::VMInaccessible) {
|
|
295
|
+
@vm.start
|
|
296
|
+
}
|
|
297
|
+
end
|
|
289
298
|
end
|
|
290
299
|
end
|
|
291
300
|
end
|
data/vagrant.gemspec
CHANGED
|
@@ -19,14 +19,14 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.add_dependency "json", "~> 1.5.1"
|
|
20
20
|
s.add_dependency "net-ssh", "~> 2.1.4"
|
|
21
21
|
s.add_dependency "net-scp", "~> 1.0.4"
|
|
22
|
-
s.add_dependency "i18n", "~> 0.
|
|
22
|
+
s.add_dependency "i18n", "~> 0.6.0"
|
|
23
23
|
s.add_dependency "thor", "~> 0.14.6"
|
|
24
24
|
s.add_dependency "virtualbox", "~> 0.9.1"
|
|
25
25
|
|
|
26
26
|
s.add_development_dependency "rake"
|
|
27
27
|
s.add_development_dependency "contest", ">= 0.1.2"
|
|
28
|
+
s.add_development_dependency "minitest", "~> 2.5.1"
|
|
28
29
|
s.add_development_dependency "mocha"
|
|
29
|
-
s.add_development_dependency "ruby-debug"
|
|
30
30
|
|
|
31
31
|
s.files = `git ls-files`.split("\n")
|
|
32
32
|
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrantup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mitchell Hashimoto
|
|
@@ -87,14 +87,14 @@ dependencies:
|
|
|
87
87
|
requirements:
|
|
88
88
|
- - ~>
|
|
89
89
|
- !ruby/object:Gem::Version
|
|
90
|
-
version: 0.
|
|
90
|
+
version: 0.6.0
|
|
91
91
|
type: :runtime
|
|
92
92
|
prerelease: false
|
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
|
94
94
|
requirements:
|
|
95
95
|
- - ~>
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
|
-
version: 0.
|
|
97
|
+
version: 0.6.0
|
|
98
98
|
- !ruby/object:Gem::Dependency
|
|
99
99
|
name: thor
|
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -152,21 +152,21 @@ dependencies:
|
|
|
152
152
|
- !ruby/object:Gem::Version
|
|
153
153
|
version: 0.1.2
|
|
154
154
|
- !ruby/object:Gem::Dependency
|
|
155
|
-
name:
|
|
155
|
+
name: minitest
|
|
156
156
|
requirement: !ruby/object:Gem::Requirement
|
|
157
157
|
requirements:
|
|
158
|
-
- -
|
|
158
|
+
- - ~>
|
|
159
159
|
- !ruby/object:Gem::Version
|
|
160
|
-
version:
|
|
160
|
+
version: 2.5.1
|
|
161
161
|
type: :development
|
|
162
162
|
prerelease: false
|
|
163
163
|
version_requirements: !ruby/object:Gem::Requirement
|
|
164
164
|
requirements:
|
|
165
|
-
- -
|
|
165
|
+
- - ~>
|
|
166
166
|
- !ruby/object:Gem::Version
|
|
167
|
-
version:
|
|
167
|
+
version: 2.5.1
|
|
168
168
|
- !ruby/object:Gem::Dependency
|
|
169
|
-
name:
|
|
169
|
+
name: mocha
|
|
170
170
|
requirement: !ruby/object:Gem::Requirement
|
|
171
171
|
requirements:
|
|
172
172
|
- - '>='
|
|
@@ -350,94 +350,94 @@ files:
|
|
|
350
350
|
- templates/nfs/exports_linux.erb
|
|
351
351
|
- templates/package_Vagrantfile.erb
|
|
352
352
|
- templates/ssh_config.erb
|
|
353
|
-
- test/locales/en.yml
|
|
354
|
-
- test/test_helper.rb
|
|
355
|
-
- test/vagrant/action/box/destroy_test.rb
|
|
356
|
-
- test/vagrant/action/box/download_test.rb
|
|
357
|
-
- test/vagrant/action/box/package_test.rb
|
|
358
|
-
- test/vagrant/action/box/unpackage_test.rb
|
|
359
|
-
- test/vagrant/action/box/verify_test.rb
|
|
360
|
-
- test/vagrant/action/builder_test.rb
|
|
361
|
-
- test/vagrant/action/env/set_test.rb
|
|
362
|
-
- test/vagrant/action/environment_test.rb
|
|
363
|
-
- test/vagrant/action/general/package_test.rb
|
|
364
|
-
- test/vagrant/action/general/validate_test.rb
|
|
365
|
-
- test/vagrant/action/vm/boot_test.rb
|
|
366
|
-
- test/vagrant/action/vm/check_accessible_test.rb
|
|
367
|
-
- test/vagrant/action/vm/check_box_test.rb
|
|
368
|
-
- test/vagrant/action/vm/check_guest_additions_test.rb
|
|
369
|
-
- test/vagrant/action/vm/clean_machine_folder_test.rb
|
|
370
|
-
- test/vagrant/action/vm/clear_forwarded_ports_test.rb
|
|
371
|
-
- test/vagrant/action/vm/clear_nfs_exports_test.rb
|
|
372
|
-
- test/vagrant/action/vm/clear_shared_folders_test.rb
|
|
373
|
-
- test/vagrant/action/vm/customize_test.rb
|
|
374
|
-
- test/vagrant/action/vm/destroy_test.rb
|
|
375
|
-
- test/vagrant/action/vm/destroy_unused_network_interfaces_test.rb
|
|
376
|
-
- test/vagrant/action/vm/discard_state_test.rb
|
|
377
|
-
- test/vagrant/action/vm/export_test.rb
|
|
378
|
-
- test/vagrant/action/vm/forward_ports_helpers_test.rb
|
|
379
|
-
- test/vagrant/action/vm/forward_ports_test.rb
|
|
380
|
-
- test/vagrant/action/vm/halt_test.rb
|
|
381
|
-
- test/vagrant/action/vm/host_name_test.rb
|
|
382
|
-
- test/vagrant/action/vm/import_test.rb
|
|
383
|
-
- test/vagrant/action/vm/match_mac_address_test.rb
|
|
384
|
-
- test/vagrant/action/vm/modify_test.rb
|
|
385
|
-
- test/vagrant/action/vm/network_test.rb
|
|
386
|
-
- test/vagrant/action/vm/nfs_helpers_test.rb
|
|
387
|
-
- test/vagrant/action/vm/nfs_test.rb
|
|
388
|
-
- test/vagrant/action/vm/package_test.rb
|
|
389
|
-
- test/vagrant/action/vm/package_vagrantfile_test.rb
|
|
390
|
-
- test/vagrant/action/vm/provision_test.rb
|
|
391
|
-
- test/vagrant/action/vm/provisioner_cleanup_test.rb
|
|
392
|
-
- test/vagrant/action/vm/resume_test.rb
|
|
393
|
-
- test/vagrant/action/vm/share_folders_test.rb
|
|
394
|
-
- test/vagrant/action/vm/suspend_test.rb
|
|
395
|
-
- test/vagrant/action/warden_test.rb
|
|
396
|
-
- test/vagrant/action_test.rb
|
|
397
|
-
- test/vagrant/box_collection_test.rb
|
|
398
|
-
- test/vagrant/box_test.rb
|
|
399
|
-
- test/vagrant/cli_test.rb
|
|
400
|
-
- test/vagrant/command/base_test.rb
|
|
401
|
-
- test/vagrant/command/group_base_test.rb
|
|
402
|
-
- test/vagrant/command/helpers_test.rb
|
|
403
|
-
- test/vagrant/command/package_test.rb
|
|
404
|
-
- test/vagrant/config/base_test.rb
|
|
405
|
-
- test/vagrant/config/error_recorder_test.rb
|
|
406
|
-
- test/vagrant/config/ssh_test.rb
|
|
407
|
-
- test/vagrant/config/vagrant_test.rb
|
|
408
|
-
- test/vagrant/config/vm/provisioner_test.rb
|
|
409
|
-
- test/vagrant/config/vm_test.rb
|
|
410
|
-
- test/vagrant/config_test.rb
|
|
411
|
-
- test/vagrant/data_store_test.rb
|
|
412
|
-
- test/vagrant/downloaders/base_test.rb
|
|
413
|
-
- test/vagrant/downloaders/file_test.rb
|
|
414
|
-
- test/vagrant/downloaders/http_test.rb
|
|
415
|
-
- test/vagrant/environment_test.rb
|
|
416
|
-
- test/vagrant/errors_test.rb
|
|
417
|
-
- test/vagrant/hosts/base_test.rb
|
|
418
|
-
- test/vagrant/hosts/bsd_test.rb
|
|
419
|
-
- test/vagrant/hosts/linux_test.rb
|
|
420
|
-
- test/vagrant/plugin_test.rb
|
|
421
|
-
- test/vagrant/provisioners/base_test.rb
|
|
422
|
-
- test/vagrant/provisioners/chef_client_test.rb
|
|
423
|
-
- test/vagrant/provisioners/chef_solo_test.rb
|
|
424
|
-
- test/vagrant/provisioners/chef_test.rb
|
|
425
|
-
- test/vagrant/provisioners/puppet_server_test.rb
|
|
426
|
-
- test/vagrant/provisioners/puppet_test.rb
|
|
427
|
-
- test/vagrant/provisioners/shell_test.rb
|
|
428
|
-
- test/vagrant/ssh/session_test.rb
|
|
429
|
-
- test/vagrant/ssh_test.rb
|
|
430
|
-
- test/vagrant/systems/base_test.rb
|
|
431
|
-
- test/vagrant/systems/linux_test.rb
|
|
432
|
-
- test/vagrant/ui_test.rb
|
|
433
|
-
- test/vagrant/util/busy_test.rb
|
|
434
|
-
- test/vagrant/util/counter_test.rb
|
|
435
|
-
- test/vagrant/util/hash_with_indifferent_access_test.rb
|
|
436
|
-
- test/vagrant/util/platform_test.rb
|
|
437
|
-
- test/vagrant/util/retryable_test.rb
|
|
438
|
-
- test/vagrant/util/stacked_proc_runner_test.rb
|
|
439
|
-
- test/vagrant/util/template_renderer_test.rb
|
|
440
|
-
- test/vagrant/vm_test.rb
|
|
353
|
+
- test/unit/locales/en.yml
|
|
354
|
+
- test/unit/test_helper.rb
|
|
355
|
+
- test/unit/vagrant/action/box/destroy_test.rb
|
|
356
|
+
- test/unit/vagrant/action/box/download_test.rb
|
|
357
|
+
- test/unit/vagrant/action/box/package_test.rb
|
|
358
|
+
- test/unit/vagrant/action/box/unpackage_test.rb
|
|
359
|
+
- test/unit/vagrant/action/box/verify_test.rb
|
|
360
|
+
- test/unit/vagrant/action/builder_test.rb
|
|
361
|
+
- test/unit/vagrant/action/env/set_test.rb
|
|
362
|
+
- test/unit/vagrant/action/environment_test.rb
|
|
363
|
+
- test/unit/vagrant/action/general/package_test.rb
|
|
364
|
+
- test/unit/vagrant/action/general/validate_test.rb
|
|
365
|
+
- test/unit/vagrant/action/vm/boot_test.rb
|
|
366
|
+
- test/unit/vagrant/action/vm/check_accessible_test.rb
|
|
367
|
+
- test/unit/vagrant/action/vm/check_box_test.rb
|
|
368
|
+
- test/unit/vagrant/action/vm/check_guest_additions_test.rb
|
|
369
|
+
- test/unit/vagrant/action/vm/clean_machine_folder_test.rb
|
|
370
|
+
- test/unit/vagrant/action/vm/clear_forwarded_ports_test.rb
|
|
371
|
+
- test/unit/vagrant/action/vm/clear_nfs_exports_test.rb
|
|
372
|
+
- test/unit/vagrant/action/vm/clear_shared_folders_test.rb
|
|
373
|
+
- test/unit/vagrant/action/vm/customize_test.rb
|
|
374
|
+
- test/unit/vagrant/action/vm/destroy_test.rb
|
|
375
|
+
- test/unit/vagrant/action/vm/destroy_unused_network_interfaces_test.rb
|
|
376
|
+
- test/unit/vagrant/action/vm/discard_state_test.rb
|
|
377
|
+
- test/unit/vagrant/action/vm/export_test.rb
|
|
378
|
+
- test/unit/vagrant/action/vm/forward_ports_helpers_test.rb
|
|
379
|
+
- test/unit/vagrant/action/vm/forward_ports_test.rb
|
|
380
|
+
- test/unit/vagrant/action/vm/halt_test.rb
|
|
381
|
+
- test/unit/vagrant/action/vm/host_name_test.rb
|
|
382
|
+
- test/unit/vagrant/action/vm/import_test.rb
|
|
383
|
+
- test/unit/vagrant/action/vm/match_mac_address_test.rb
|
|
384
|
+
- test/unit/vagrant/action/vm/modify_test.rb
|
|
385
|
+
- test/unit/vagrant/action/vm/network_test.rb
|
|
386
|
+
- test/unit/vagrant/action/vm/nfs_helpers_test.rb
|
|
387
|
+
- test/unit/vagrant/action/vm/nfs_test.rb
|
|
388
|
+
- test/unit/vagrant/action/vm/package_test.rb
|
|
389
|
+
- test/unit/vagrant/action/vm/package_vagrantfile_test.rb
|
|
390
|
+
- test/unit/vagrant/action/vm/provision_test.rb
|
|
391
|
+
- test/unit/vagrant/action/vm/provisioner_cleanup_test.rb
|
|
392
|
+
- test/unit/vagrant/action/vm/resume_test.rb
|
|
393
|
+
- test/unit/vagrant/action/vm/share_folders_test.rb
|
|
394
|
+
- test/unit/vagrant/action/vm/suspend_test.rb
|
|
395
|
+
- test/unit/vagrant/action/warden_test.rb
|
|
396
|
+
- test/unit/vagrant/action_test.rb
|
|
397
|
+
- test/unit/vagrant/box_collection_test.rb
|
|
398
|
+
- test/unit/vagrant/box_test.rb
|
|
399
|
+
- test/unit/vagrant/cli_test.rb
|
|
400
|
+
- test/unit/vagrant/command/base_test.rb
|
|
401
|
+
- test/unit/vagrant/command/group_base_test.rb
|
|
402
|
+
- test/unit/vagrant/command/helpers_test.rb
|
|
403
|
+
- test/unit/vagrant/command/package_test.rb
|
|
404
|
+
- test/unit/vagrant/config/base_test.rb
|
|
405
|
+
- test/unit/vagrant/config/error_recorder_test.rb
|
|
406
|
+
- test/unit/vagrant/config/ssh_test.rb
|
|
407
|
+
- test/unit/vagrant/config/vagrant_test.rb
|
|
408
|
+
- test/unit/vagrant/config/vm/provisioner_test.rb
|
|
409
|
+
- test/unit/vagrant/config/vm_test.rb
|
|
410
|
+
- test/unit/vagrant/config_test.rb
|
|
411
|
+
- test/unit/vagrant/data_store_test.rb
|
|
412
|
+
- test/unit/vagrant/downloaders/base_test.rb
|
|
413
|
+
- test/unit/vagrant/downloaders/file_test.rb
|
|
414
|
+
- test/unit/vagrant/downloaders/http_test.rb
|
|
415
|
+
- test/unit/vagrant/environment_test.rb
|
|
416
|
+
- test/unit/vagrant/errors_test.rb
|
|
417
|
+
- test/unit/vagrant/hosts/base_test.rb
|
|
418
|
+
- test/unit/vagrant/hosts/bsd_test.rb
|
|
419
|
+
- test/unit/vagrant/hosts/linux_test.rb
|
|
420
|
+
- test/unit/vagrant/plugin_test.rb
|
|
421
|
+
- test/unit/vagrant/provisioners/base_test.rb
|
|
422
|
+
- test/unit/vagrant/provisioners/chef_client_test.rb
|
|
423
|
+
- test/unit/vagrant/provisioners/chef_solo_test.rb
|
|
424
|
+
- test/unit/vagrant/provisioners/chef_test.rb
|
|
425
|
+
- test/unit/vagrant/provisioners/puppet_server_test.rb
|
|
426
|
+
- test/unit/vagrant/provisioners/puppet_test.rb
|
|
427
|
+
- test/unit/vagrant/provisioners/shell_test.rb
|
|
428
|
+
- test/unit/vagrant/ssh/session_test.rb
|
|
429
|
+
- test/unit/vagrant/ssh_test.rb
|
|
430
|
+
- test/unit/vagrant/systems/base_test.rb
|
|
431
|
+
- test/unit/vagrant/systems/linux_test.rb
|
|
432
|
+
- test/unit/vagrant/ui_test.rb
|
|
433
|
+
- test/unit/vagrant/util/busy_test.rb
|
|
434
|
+
- test/unit/vagrant/util/counter_test.rb
|
|
435
|
+
- test/unit/vagrant/util/hash_with_indifferent_access_test.rb
|
|
436
|
+
- test/unit/vagrant/util/platform_test.rb
|
|
437
|
+
- test/unit/vagrant/util/retryable_test.rb
|
|
438
|
+
- test/unit/vagrant/util/stacked_proc_runner_test.rb
|
|
439
|
+
- test/unit/vagrant/util/template_renderer_test.rb
|
|
440
|
+
- test/unit/vagrant/vm_test.rb
|
|
441
441
|
- vagrant.gemspec
|
|
442
442
|
homepage: http://vagrantup.com
|
|
443
443
|
licenses: []
|