vagrant 0.9.7 → 1.0.0
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 +41 -0
- data/config/default.rb +0 -1
- data/lib/vagrant.rb +9 -5
- data/lib/vagrant/action.rb +1 -0
- data/lib/vagrant/action/builtin.rb +10 -0
- data/lib/vagrant/action/general/check_virtualbox.rb +28 -0
- data/lib/vagrant/action/general/package.rb +10 -7
- data/lib/vagrant/action/general/validate.rb +2 -3
- data/lib/vagrant/action/vm/customize.rb +1 -1
- data/lib/vagrant/action/vm/network.rb +10 -9
- data/lib/vagrant/action/vm/nfs.rb +7 -0
- data/lib/vagrant/command.rb +1 -0
- data/lib/vagrant/command/base.rb +8 -2
- data/lib/vagrant/command/destroy.rb +29 -3
- data/lib/vagrant/command/gem.rb +35 -0
- data/lib/vagrant/command/package.rb +1 -1
- data/lib/vagrant/command/ssh.rb +1 -1
- data/lib/vagrant/command/ssh_config.rb +1 -1
- data/lib/vagrant/config/loader.rb +2 -0
- data/lib/vagrant/config/ssh.rb +0 -20
- data/lib/vagrant/config/vm.rb +0 -48
- data/lib/vagrant/data_store.rb +18 -9
- data/lib/vagrant/driver/virtualbox.rb +1 -0
- data/lib/vagrant/driver/virtualbox_4_0.rb +36 -14
- data/lib/vagrant/driver/virtualbox_4_1.rb +36 -14
- data/lib/vagrant/driver/virtualbox_base.rb +37 -19
- data/lib/vagrant/environment.rb +21 -2
- data/lib/vagrant/errors.rb +10 -0
- data/lib/vagrant/guest.rb +1 -0
- data/lib/vagrant/guest/arch.rb +10 -2
- data/lib/vagrant/guest/base.rb +1 -1
- data/lib/vagrant/guest/debian.rb +5 -2
- data/lib/vagrant/guest/fedora.rb +66 -0
- data/lib/vagrant/guest/freebsd.rb +18 -7
- data/lib/vagrant/guest/gentoo.rb +6 -0
- data/lib/vagrant/guest/linux.rb +1 -0
- data/lib/vagrant/guest/redhat.rb +1 -0
- data/lib/vagrant/guest/ubuntu.rb +1 -1
- data/lib/vagrant/hosts.rb +1 -0
- data/lib/vagrant/hosts/opensuse.rb +30 -0
- data/lib/vagrant/plugin.rb +21 -19
- data/lib/vagrant/provisioners/chef.rb +3 -1
- data/lib/vagrant/provisioners/puppet.rb +18 -7
- data/lib/vagrant/util/line_ending_helpers.rb +14 -0
- data/lib/vagrant/util/subprocess.rb +9 -0
- data/lib/vagrant/version.rb +1 -1
- data/lib/vagrant/vm.rb +6 -6
- data/templates/commands/init/Vagrantfile.erb +1 -1
- data/templates/guests/fedora/network_dhcp.erb +6 -0
- data/templates/guests/fedora/network_static.erb +13 -0
- data/templates/guests/freebsd/network_dhcp.erb +3 -0
- data/templates/guests/freebsd/network_static.erb +3 -0
- data/templates/locales/en.yml +26 -0
- data/templates/nfs/exports_linux.erb +1 -1
- data/test/acceptance/networking/host_only_test.rb +2 -2
- data/test/unit/vagrant/config/vm_test.rb +4 -4
- data/test/unit/vagrant/data_store_test.rb +12 -0
- data/test/unit/vagrant/environment_test.rb +20 -0
- data/test/unit/vagrant/util/line_endings_helper_test.rb +16 -0
- data/vagrant.gemspec +1 -1
- metadata +37 -27
@@ -57,7 +57,9 @@ module Vagrant
|
|
57
57
|
temp.write(config_file)
|
58
58
|
temp.close
|
59
59
|
|
60
|
-
|
60
|
+
remote_file = File.join(config.provisioning_path, filename)
|
61
|
+
env[:vm].channel.sudo("rm #{remote_file}", :error_check => false)
|
62
|
+
env[:vm].channel.upload(temp.path, remote_file)
|
61
63
|
end
|
62
64
|
|
63
65
|
def setup_json
|
@@ -13,13 +13,13 @@ module Vagrant
|
|
13
13
|
attr_accessor :module_path
|
14
14
|
attr_accessor :pp_path
|
15
15
|
attr_accessor :options
|
16
|
+
attr_accessor :facter
|
16
17
|
|
17
|
-
def
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
end
|
18
|
+
def manifest_file; @manifest_file || "default.pp"; end
|
19
|
+
def manifests_path; @manifests_path || "manifests"; end
|
20
|
+
def pp_path; @pp_path || "/tmp/vagrant-puppet"; end
|
21
|
+
def options; @options ||= []; end
|
22
|
+
def facter; @facter ||= {}; end
|
23
23
|
|
24
24
|
# Returns the manifests path expanded relative to the root path of the
|
25
25
|
# environment.
|
@@ -140,7 +140,18 @@ module Vagrant
|
|
140
140
|
options << @manifest_file
|
141
141
|
options = options.join(" ")
|
142
142
|
|
143
|
-
|
143
|
+
# Build up the custom facts if we have any
|
144
|
+
facter = ""
|
145
|
+
if !config.facter.empty?
|
146
|
+
facts = []
|
147
|
+
config.facter.each do |key, value|
|
148
|
+
facts << "FACTER_#{key}='#{value}'"
|
149
|
+
end
|
150
|
+
|
151
|
+
facter = "#{facts.join(" ")} "
|
152
|
+
end
|
153
|
+
|
154
|
+
command = "cd #{manifests_guest_path} && #{facter}puppet apply #{options}"
|
144
155
|
|
145
156
|
env[:ui].info I18n.t("vagrant.provisioners.puppet.running_puppet",
|
146
157
|
:manifest => @manifest_file)
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module Vagrant
|
2
|
+
module Util
|
3
|
+
module LineEndingHelpers
|
4
|
+
# Converts line endings to unix-style line endings in the
|
5
|
+
# given string.
|
6
|
+
#
|
7
|
+
# @param [String] string Original string
|
8
|
+
# @return [String] The fixed string
|
9
|
+
def dos_to_unix(string)
|
10
|
+
string.gsub("\r\n", "\n")
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -171,6 +171,15 @@ module Vagrant
|
|
171
171
|
# Windows doesn't support non-blocking reads on
|
172
172
|
# file descriptors or pipes so we have to get
|
173
173
|
# a bit more creative.
|
174
|
+
|
175
|
+
# Check if data is actually ready on this IO device.
|
176
|
+
# We have to do this since `readpartial` will actually block
|
177
|
+
# until data is available, which can cause blocking forever
|
178
|
+
# in some cases.
|
179
|
+
results = IO.select([io], nil, nil, 1)
|
180
|
+
break if !results || results[0].empty?
|
181
|
+
|
182
|
+
# Read!
|
174
183
|
data << io.readpartial(READ_CHUNK_SIZE)
|
175
184
|
else
|
176
185
|
# Do a simple non-blocking read on the IO object
|
data/lib/vagrant/version.rb
CHANGED
data/lib/vagrant/vm.rb
CHANGED
@@ -128,10 +128,12 @@ module Vagrant
|
|
128
128
|
begin
|
129
129
|
@driver = Driver::VirtualBox.new(@uuid)
|
130
130
|
rescue Driver::VirtualBox::VMNotFound
|
131
|
-
# Clear the UUID since this VM doesn't exist.
|
132
|
-
|
133
|
-
|
134
|
-
|
131
|
+
# Clear the UUID since this VM doesn't exist.
|
132
|
+
@uuid = nil
|
133
|
+
|
134
|
+
# Reset the driver. This shouldn't raise a VMNotFound since we won't
|
135
|
+
# feed it a UUID.
|
136
|
+
@driver = Driver::VirtualBox.new
|
135
137
|
end
|
136
138
|
end
|
137
139
|
|
@@ -181,8 +183,6 @@ module Vagrant
|
|
181
183
|
@_ui
|
182
184
|
end
|
183
185
|
|
184
|
-
protected
|
185
|
-
|
186
186
|
def run_action(name, options=nil)
|
187
187
|
options = {
|
188
188
|
:vm => self,
|
@@ -20,7 +20,7 @@ Vagrant::Config.run do |config|
|
|
20
20
|
# via the IP. Host-only networks can talk to the host machine as well as
|
21
21
|
# any other machines on the same network, but cannot be accessed (through this
|
22
22
|
# network interface) by any external networks.
|
23
|
-
# config.vm.network :hostonly, "
|
23
|
+
# config.vm.network :hostonly, "192.168.33.10"
|
24
24
|
|
25
25
|
# Assign this VM to a bridged network, allowing you to connect directly to a
|
26
26
|
# network using the host's network device. This makes the VM appear as another
|
@@ -0,0 +1,13 @@
|
|
1
|
+
#VAGRANT-BEGIN
|
2
|
+
# The contents below are automatically generated by Vagrant. Do not modify.
|
3
|
+
NM_CONTROLLED=no
|
4
|
+
BOOTPROTO=static
|
5
|
+
ONBOOT=yes
|
6
|
+
IPADDR=<%= options[:ip] %>
|
7
|
+
NETMASK=<%= options[:netmask] %>
|
8
|
+
DEVICE=p7p<%= options[:interface] %>
|
9
|
+
<%= options[:gateway] ? "GATEWAY=#{options[:gateway]}" : '' %>
|
10
|
+
<%= options[:mac_address] ? "HWADDR=#{options[:mac_address]}" : '' %>
|
11
|
+
<%= options[:dns1] ? "DNS1=#{options[:dns1]}" : 'DNS1=8.8.4.4' %>
|
12
|
+
<%= options[:dns2] ? "DNS2=#{options[:dns2]}" : 'DNS1=8.8.8.8' %>
|
13
|
+
#VAGRANT-END
|
data/templates/locales/en.yml
CHANGED
@@ -47,6 +47,12 @@ en:
|
|
47
47
|
may run at any given time to avoid problems with VirtualBox inconsistencies
|
48
48
|
occurring. Please wait for the other instance of Vagrant to end and then
|
49
49
|
try again.
|
50
|
+
gem_command_in_bundler: |-
|
51
|
+
You cannot run the `vagrant gem` command while in a bundler environment.
|
52
|
+
Bundler messes around quite a bit with the RubyGem load paths and gems
|
53
|
+
installed via `vagrant gem` are excluded by Bundler.
|
54
|
+
|
55
|
+
Instead, please include your Vagrant plugins in your Gemfile itself.
|
50
56
|
guest:
|
51
57
|
invalid_class: |-
|
52
58
|
The specified guest class does not inherit from `Vagrant::Guest::Base`.
|
@@ -225,6 +231,18 @@ en:
|
|
225
231
|
vm_not_running: "VM is not currently running. Please bring it up to run this command."
|
226
232
|
box:
|
227
233
|
no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
|
234
|
+
destroy:
|
235
|
+
confirmation: "Are you sure you want to destroy the '%{name}' VM? [Y/N] "
|
236
|
+
will_not_destroy: |-
|
237
|
+
The VM '%{name}' will not be destroyed, since the confirmation
|
238
|
+
was declined.
|
239
|
+
gem:
|
240
|
+
help_preamble: |-
|
241
|
+
`vagrant gem` is used to install Vagrant plugins via the RubyGems
|
242
|
+
system. In fact, `vagrant gem` is just a frontend to the actual `gem`
|
243
|
+
interface, with the difference being that Vagrant sets up a custom
|
244
|
+
directory where gems are installed so that they are isolated from your
|
245
|
+
system gems.
|
228
246
|
init:
|
229
247
|
success: |-
|
230
248
|
A `Vagrantfile` has been placed in this directory. You are now
|
@@ -237,6 +255,11 @@ en:
|
|
237
255
|
stopped without properly closing the session. Run `vagrant up`
|
238
256
|
to resume this virtual machine. If any problems persist, you may
|
239
257
|
have to destroy and restart the virtual machine.
|
258
|
+
gurumeditation: |-
|
259
|
+
The VM is in the "guru meditation" state. This is a rare case which means
|
260
|
+
that an internal error in VitualBox caused the VM to fail. This is always
|
261
|
+
the sign of a bug in VirtualBox. You can try to bring your VM back online
|
262
|
+
with a `vagrant up`.
|
240
263
|
inaccessible: |-
|
241
264
|
The VM is inaccessible! This is a rare case which means that VirtualBox
|
242
265
|
can't find your VM configuration. This usually happens when upgrading
|
@@ -522,6 +545,9 @@ en:
|
|
522
545
|
output_exists: |-
|
523
546
|
The specified file to save the package as already exists. Please
|
524
547
|
remove this file or specify a different file name for outputting.
|
548
|
+
output_is_directory: |-
|
549
|
+
The specified output is a directory. Please specify a path including
|
550
|
+
a filename.
|
525
551
|
requires_directory: |-
|
526
552
|
A directory was not specified to package. This should never happen
|
527
553
|
and is a result of an internal inconsistency.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# VAGRANT-BEGIN: <%= uuid %>
|
2
2
|
<% folders.each do |name, opts| %>
|
3
|
-
"<%= opts[:hostpath] %>" <%= ip %>(rw,no_subtree_check,all_squash<% if opts[:map_uid] %>,anonuid=<%= opts[:map_uid] %><% end %><% if opts[:map_gid] %>,anongid=<%= opts[:map_gid] %><% end %>)
|
3
|
+
"<%= opts[:hostpath] %>" <%= ip %>(rw,no_subtree_check,all_squash<% if opts[:map_uid] %>,anonuid=<%= opts[:map_uid] %><% end %><% if opts[:map_gid] %>,anongid=<%= opts[:map_gid] %><% end %>,fsid=<%= opts[:uuid] %>)
|
4
4
|
<% end %>
|
5
5
|
# VAGRANT-END: <%= uuid %>
|
@@ -26,12 +26,12 @@ describe "vagrant host only networking" do
|
|
26
26
|
f.puts(<<VFILE)
|
27
27
|
Vagrant::Config.run do |config|
|
28
28
|
config.vm.box = "base"
|
29
|
-
config.vm.network :hostonly, "
|
29
|
+
config.vm.network :hostonly, "192.168.33.10"
|
30
30
|
end
|
31
31
|
VFILE
|
32
32
|
end
|
33
33
|
|
34
34
|
assert_execute("vagrant", "up")
|
35
|
-
assert_host_to_vm_network("http://
|
35
|
+
assert_host_to_vm_network("http://192.168.33.10:8000/", 8000)
|
36
36
|
end
|
37
37
|
end
|
@@ -34,15 +34,15 @@ describe Vagrant::Config::VMConfig do
|
|
34
34
|
|
35
35
|
it "merges by appending networks" do
|
36
36
|
a = described_class.new
|
37
|
-
a.network :hostonly, "
|
37
|
+
a.network :hostonly, "192.168.33.10"
|
38
38
|
|
39
39
|
b = described_class.new
|
40
|
-
b.network :hostonly, "
|
40
|
+
b.network :hostonly, "192.168.33.11"
|
41
41
|
|
42
42
|
c = a.merge(b)
|
43
43
|
c.networks.length.should == 2
|
44
|
-
c.networks[0].should == [:hostonly, ["
|
45
|
-
c.networks[1].should == [:hostonly, ["
|
44
|
+
c.networks[0].should == [:hostonly, ["192.168.33.10"]]
|
45
|
+
c.networks[1].should == [:hostonly, ["192.168.33.11"]]
|
46
46
|
end
|
47
47
|
|
48
48
|
it "merges by appending provisioners" do
|
@@ -64,4 +64,16 @@ describe Vagrant::DataStore do
|
|
64
64
|
# The file should no longer exist
|
65
65
|
db_file.should_not be_exist
|
66
66
|
end
|
67
|
+
|
68
|
+
it "works if the DB file is nil" do
|
69
|
+
store = described_class.new(nil)
|
70
|
+
store[:foo] = "bar"
|
71
|
+
store[:foo].should == "bar"
|
72
|
+
end
|
73
|
+
|
74
|
+
it "throws an exception if attempting to commit a data store with no file" do
|
75
|
+
store = described_class.new(nil)
|
76
|
+
expect { store.commit }.
|
77
|
+
to raise_error(StandardError)
|
78
|
+
end
|
67
79
|
end
|
@@ -86,6 +86,26 @@ describe Vagrant::Environment do
|
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
|
+
describe "primary VM" do
|
90
|
+
it "should be the only VM if not a multi-VM environment" do
|
91
|
+
instance.primary_vm.should == instance.vms.values.first
|
92
|
+
end
|
93
|
+
|
94
|
+
it "should be the VM marked as the primary" do
|
95
|
+
environment = isolated_environment do |env|
|
96
|
+
env.vagrantfile(<<-VF)
|
97
|
+
Vagrant::Config.run do |config|
|
98
|
+
config.vm.define :foo
|
99
|
+
config.vm.define :bar, :primary => true
|
100
|
+
end
|
101
|
+
VF
|
102
|
+
end
|
103
|
+
|
104
|
+
env = environment.create_vagrant_env
|
105
|
+
env.primary_vm.should == env.vms[:bar]
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
89
109
|
describe "loading configuration" do
|
90
110
|
it "should load global configuration" do
|
91
111
|
environment = isolated_environment do |env|
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require File.expand_path("../../../base", __FILE__)
|
2
|
+
|
3
|
+
require "vagrant/util/line_ending_helpers"
|
4
|
+
|
5
|
+
describe Vagrant::Util::LineEndingHelpers do
|
6
|
+
let(:klass) do
|
7
|
+
Class.new do
|
8
|
+
extend Vagrant::Util::LineEndingHelpers
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
it "should convert DOS to unix-style line endings" do
|
13
|
+
klass.dos_to_unix("foo\r\nbar\r\n").should == "foo\nbar\n"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
data/vagrant.gemspec
CHANGED
@@ -17,11 +17,11 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.add_dependency "archive-tar-minitar", "= 0.5.2"
|
18
18
|
s.add_dependency "childprocess", "~> 0.3.1"
|
19
19
|
s.add_dependency "erubis", "~> 2.7.0"
|
20
|
+
s.add_dependency "i18n", "~> 0.6.0"
|
20
21
|
s.add_dependency "json", "~> 1.5.1"
|
21
22
|
s.add_dependency "log4r", "~> 1.1.9"
|
22
23
|
s.add_dependency "net-ssh", "~> 2.2.2"
|
23
24
|
s.add_dependency "net-scp", "~> 1.0.4"
|
24
|
-
s.add_dependency "i18n", "~> 0.6.0"
|
25
25
|
|
26
26
|
s.add_development_dependency "rake"
|
27
27
|
s.add_development_dependency "contest", ">= 0.1.2"
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
|
+
- 1
|
7
8
|
- 0
|
8
|
-
-
|
9
|
-
|
10
|
-
version: 0.9.7
|
9
|
+
- 0
|
10
|
+
version: 1.0.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Mitchell Hashimoto
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2012-
|
19
|
+
date: 2012-03-06 00:00:00 Z
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
@@ -68,6 +68,22 @@ dependencies:
|
|
68
68
|
requirement: *id003
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
version_requirements: &id004 !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
hash: 7
|
76
|
+
segments:
|
77
|
+
- 0
|
78
|
+
- 6
|
79
|
+
- 0
|
80
|
+
version: 0.6.0
|
81
|
+
name: i18n
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
requirement: *id004
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
version_requirements: &id005 !ruby/object:Gem::Requirement
|
71
87
|
none: false
|
72
88
|
requirements:
|
73
89
|
- - ~>
|
@@ -81,9 +97,9 @@ dependencies:
|
|
81
97
|
name: json
|
82
98
|
type: :runtime
|
83
99
|
prerelease: false
|
84
|
-
requirement: *
|
100
|
+
requirement: *id005
|
85
101
|
- !ruby/object:Gem::Dependency
|
86
|
-
version_requirements: &
|
102
|
+
version_requirements: &id006 !ruby/object:Gem::Requirement
|
87
103
|
none: false
|
88
104
|
requirements:
|
89
105
|
- - ~>
|
@@ -97,9 +113,9 @@ dependencies:
|
|
97
113
|
name: log4r
|
98
114
|
type: :runtime
|
99
115
|
prerelease: false
|
100
|
-
requirement: *
|
116
|
+
requirement: *id006
|
101
117
|
- !ruby/object:Gem::Dependency
|
102
|
-
version_requirements: &
|
118
|
+
version_requirements: &id007 !ruby/object:Gem::Requirement
|
103
119
|
none: false
|
104
120
|
requirements:
|
105
121
|
- - ~>
|
@@ -113,9 +129,9 @@ dependencies:
|
|
113
129
|
name: net-ssh
|
114
130
|
type: :runtime
|
115
131
|
prerelease: false
|
116
|
-
requirement: *
|
132
|
+
requirement: *id007
|
117
133
|
- !ruby/object:Gem::Dependency
|
118
|
-
version_requirements: &
|
134
|
+
version_requirements: &id008 !ruby/object:Gem::Requirement
|
119
135
|
none: false
|
120
136
|
requirements:
|
121
137
|
- - ~>
|
@@ -129,22 +145,6 @@ dependencies:
|
|
129
145
|
name: net-scp
|
130
146
|
type: :runtime
|
131
147
|
prerelease: false
|
132
|
-
requirement: *id007
|
133
|
-
- !ruby/object:Gem::Dependency
|
134
|
-
version_requirements: &id008 !ruby/object:Gem::Requirement
|
135
|
-
none: false
|
136
|
-
requirements:
|
137
|
-
- - ~>
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
hash: 7
|
140
|
-
segments:
|
141
|
-
- 0
|
142
|
-
- 6
|
143
|
-
- 0
|
144
|
-
version: 0.6.0
|
145
|
-
name: i18n
|
146
|
-
type: :runtime
|
147
|
-
prerelease: false
|
148
148
|
requirement: *id008
|
149
149
|
- !ruby/object:Gem::Dependency
|
150
150
|
version_requirements: &id009 !ruby/object:Gem::Requirement
|
@@ -291,6 +291,7 @@ files:
|
|
291
291
|
- lib/vagrant/action/builtin.rb
|
292
292
|
- lib/vagrant/action/env/set.rb
|
293
293
|
- lib/vagrant/action/environment.rb
|
294
|
+
- lib/vagrant/action/general/check_virtualbox.rb
|
294
295
|
- lib/vagrant/action/general/package.rb
|
295
296
|
- lib/vagrant/action/general/validate.rb
|
296
297
|
- lib/vagrant/action/runner.rb
|
@@ -337,6 +338,7 @@ files:
|
|
337
338
|
- lib/vagrant/command/box_remove.rb
|
338
339
|
- lib/vagrant/command/box_repackage.rb
|
339
340
|
- lib/vagrant/command/destroy.rb
|
341
|
+
- lib/vagrant/command/gem.rb
|
340
342
|
- lib/vagrant/command/halt.rb
|
341
343
|
- lib/vagrant/command/init.rb
|
342
344
|
- lib/vagrant/command/package.rb
|
@@ -380,6 +382,7 @@ files:
|
|
380
382
|
- lib/vagrant/guest/arch.rb
|
381
383
|
- lib/vagrant/guest/base.rb
|
382
384
|
- lib/vagrant/guest/debian.rb
|
385
|
+
- lib/vagrant/guest/fedora.rb
|
383
386
|
- lib/vagrant/guest/freebsd.rb
|
384
387
|
- lib/vagrant/guest/gentoo.rb
|
385
388
|
- lib/vagrant/guest/linux.rb
|
@@ -397,6 +400,7 @@ files:
|
|
397
400
|
- lib/vagrant/hosts/freebsd.rb
|
398
401
|
- lib/vagrant/hosts/gentoo.rb
|
399
402
|
- lib/vagrant/hosts/linux.rb
|
403
|
+
- lib/vagrant/hosts/opensuse.rb
|
400
404
|
- lib/vagrant/hosts/windows.rb
|
401
405
|
- lib/vagrant/plugin.rb
|
402
406
|
- lib/vagrant/provisioners.rb
|
@@ -418,6 +422,7 @@ files:
|
|
418
422
|
- lib/vagrant/util/file_checksum.rb
|
419
423
|
- lib/vagrant/util/file_mode.rb
|
420
424
|
- lib/vagrant/util/hash_with_indifferent_access.rb
|
425
|
+
- lib/vagrant/util/line_ending_helpers.rb
|
421
426
|
- lib/vagrant/util/network_ip.rb
|
422
427
|
- lib/vagrant/util/platform.rb
|
423
428
|
- lib/vagrant/util/retryable.rb
|
@@ -437,6 +442,10 @@ files:
|
|
437
442
|
- templates/guests/arch/network_static.erb
|
438
443
|
- templates/guests/debian/network_dhcp.erb
|
439
444
|
- templates/guests/debian/network_static.erb
|
445
|
+
- templates/guests/fedora/network_dhcp.erb
|
446
|
+
- templates/guests/fedora/network_static.erb
|
447
|
+
- templates/guests/freebsd/network_dhcp.erb
|
448
|
+
- templates/guests/freebsd/network_static.erb
|
440
449
|
- templates/guests/gentoo/network_dhcp.erb
|
441
450
|
- templates/guests/gentoo/network_static.erb
|
442
451
|
- templates/guests/redhat/network_dhcp.erb
|
@@ -576,6 +585,7 @@ files:
|
|
576
585
|
- test/unit/vagrant/util/ansi_escape_code_remover_test.rb
|
577
586
|
- test/unit/vagrant/util/file_checksum_test.rb
|
578
587
|
- test/unit/vagrant/util/hash_with_indifferent_access_test.rb
|
588
|
+
- test/unit/vagrant/util/line_endings_helper_test.rb
|
579
589
|
- test/unit/vagrant/util/network_ip_test.rb
|
580
590
|
- test/unit/vagrant/util/retryable_test.rb
|
581
591
|
- test/unit/vagrant_test.rb
|