tamtam-vagrant-reload 1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/Gemfile +10 -0
- data/LICENSE.txt +22 -0
- data/README.md +26 -0
- data/Rakefile +9 -0
- data/lib/tamtam-vagrant-reload-config.rb +28 -0
- data/lib/tamtam-vagrant-reload-provisioner.rb +67 -0
- data/lib/tamtam-vagrant-reload.rb +33 -0
- data/lib/tamtam-vagrant-reload/version.rb +5 -0
- data/tamtam-vagrant-reload.gemspec +53 -0
- metadata +799 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8c0fdabc1e1cb02eb93efb6efe8cb802b9a0edb6
|
4
|
+
data.tar.gz: f80e131e7496034a490be5713689bdee9d3a6c4f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6e33c41fbd83c3058864bf0f366a9ddfdcc8aa160ddb30c508aa8f7d25ed077ee0807cfbdd4236558645439a4905ad2da371735307a34bf08a443c3214f9f356
|
7
|
+
data.tar.gz: 58d0549b38df2e3699b0bfaae37fc54b48e5dcaf133cbc0f043f321144da50fc25cd606aa672821f69cf112a60f98e1436bf0450223678b281228399f0a26eb2
|
data/.gitignore
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
gemspec
|
4
|
+
|
5
|
+
group :development do
|
6
|
+
# We depend on Vagrant for development, but we don't add it as a
|
7
|
+
# gem dependency because we expect to be installed within the
|
8
|
+
# Vagrant environment itself using `vagrant plugin`.
|
9
|
+
gem "vagrant", :git => "https://github.com/mitchellh/vagrant.git", :tag => "v1.3.4"
|
10
|
+
end
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2016 Vincent Zimmer
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# TamTam Vagrant Reload Provisioner
|
2
|
+
|
3
|
+
This is a Vagrant 1.2+ plugin that adds a `reload` provisioning step which can be used to reload VM during provisioning.
|
4
|
+
|
5
|
+
Reload can be conditional, based on a file presence.
|
6
|
+
|
7
|
+
Note : Check file using to specify a reload necessity will be automatically removed by the provisioning task.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
$ vagrant plugin install tamtam-vagrant-reload
|
12
|
+
|
13
|
+
## Usage
|
14
|
+
|
15
|
+
Add `config.vm.provision :tamtam-reload` to your `Vagrantfile` to reload your VM during provisioning.
|
16
|
+
|
17
|
+
|
18
|
+
Set the parameter `check_file` to the filename you want to check with a relative path (based on VagrantFile folder) to reload vagrant conditionally.
|
19
|
+
|
20
|
+
For example :
|
21
|
+
|
22
|
+
```
|
23
|
+
web.vm.provision :tamtam-reload do |reload|
|
24
|
+
reload.check_file = "./path/to/file/check_file_name"
|
25
|
+
end
|
26
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'uri'
|
2
|
+
|
3
|
+
module VagrantPlugins
|
4
|
+
module TamtamVagrantReload
|
5
|
+
class TamtamVagrantReloadConfig < Vagrant.plugin("2", :config)
|
6
|
+
|
7
|
+
attr_accessor :check_file
|
8
|
+
|
9
|
+
def initialize
|
10
|
+
@check_file = UNSET_VALUE
|
11
|
+
end
|
12
|
+
|
13
|
+
def finalize!
|
14
|
+
@check_file = nil if @check_file == UNSET_VALUE
|
15
|
+
if !check_file_is_string?
|
16
|
+
@check_file = nil
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
# Check_file is optional, but if they're provided we only support them as a
|
21
|
+
# string.
|
22
|
+
def check_file_is_string?
|
23
|
+
return true if check_file.is_a?(String)
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require "pathname"
|
2
|
+
require "tempfile"
|
3
|
+
|
4
|
+
require "vagrant/util/downloader"
|
5
|
+
require "vagrant/util/retryable"
|
6
|
+
|
7
|
+
module VagrantPlugins
|
8
|
+
module TamtamVagrantReload
|
9
|
+
class TamtamVagrantReloadProvisioner < Vagrant.plugin("2", :provisioner)
|
10
|
+
include Vagrant::Util::Retryable
|
11
|
+
|
12
|
+
def provision
|
13
|
+
|
14
|
+
if config.check_file.is_a?(String)
|
15
|
+
check_file = "#{config.check_file.to_s}".strip
|
16
|
+
else
|
17
|
+
check_file = config.check_file
|
18
|
+
end
|
19
|
+
|
20
|
+
reload = false
|
21
|
+
info = ''
|
22
|
+
|
23
|
+
if check_file == nil
|
24
|
+
reload = true
|
25
|
+
info = "No check file specify. \nVagrant reloading..."
|
26
|
+
else
|
27
|
+
if File.exist?(check_file)
|
28
|
+
reload = true
|
29
|
+
info = "File : '" + check_file + "' found. \nVagrant reloading..."
|
30
|
+
system('rm ' + check_file)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
if reload
|
35
|
+
options = {}
|
36
|
+
options[:provision_ignore_sentinel] = false
|
37
|
+
handle_comm(:stdout,info)
|
38
|
+
@machine.action(:reload, options)
|
39
|
+
begin
|
40
|
+
sleep 10
|
41
|
+
end until @machine.communicate.ready?
|
42
|
+
else
|
43
|
+
handle_comm(:stdout,"File : '" + check_file + "' not found. \nSkip Vagrant reload!")
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
protected
|
49
|
+
|
50
|
+
# This handles outputting the communication data back to the UI
|
51
|
+
def handle_comm(type, data)
|
52
|
+
if [:stderr, :stdout].include?(type)
|
53
|
+
# Output the data with the proper color based on the stream.
|
54
|
+
options = {}
|
55
|
+
options[:color] = type == :stdout ? :green : :red
|
56
|
+
|
57
|
+
# Clear out the newline since we add one
|
58
|
+
data = data.chomp
|
59
|
+
return if data.empty?
|
60
|
+
|
61
|
+
@machine.ui.info(data, options)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
begin
|
2
|
+
require "vagrant"
|
3
|
+
rescue LoadError
|
4
|
+
raise "The Vagrant AWS plugin must be run within Vagrant."
|
5
|
+
end
|
6
|
+
|
7
|
+
# This is a sanity check to make sure no one is attempting to install
|
8
|
+
# this into an early Vagrant version.
|
9
|
+
if Vagrant::VERSION < "1.2.0"
|
10
|
+
raise "The TamTam Vagrant Reload plugin is only compatible with Vagrant 1.2+"
|
11
|
+
end
|
12
|
+
|
13
|
+
module VagrantPlugins
|
14
|
+
module TamtamVagrantReload
|
15
|
+
class Plugin < Vagrant.plugin("2")
|
16
|
+
name "TamtamVagrantReload"
|
17
|
+
description <<-DESC
|
18
|
+
Reload vagrant VM as a provisioning step.
|
19
|
+
Reload can be conditional, base on file presence.
|
20
|
+
DESC
|
21
|
+
|
22
|
+
config(:reload, :provisioner) do
|
23
|
+
require File.expand_path("../tamtam-vagrant-reload-config", __FILE__)
|
24
|
+
TamtamVagrantReloadConfig
|
25
|
+
end
|
26
|
+
|
27
|
+
provisioner(:reload) do
|
28
|
+
require File.expand_path("../tamtam-vagrant-reload-provisioner", __FILE__)
|
29
|
+
TamtamVagrantReloadProvisioner
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# Add the lib directory to the load path so we can get the version file out.
|
2
|
+
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
|
3
|
+
|
4
|
+
require 'tamtam-vagrant-reload/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "tamtam-vagrant-reload"
|
8
|
+
gem.version = VagrantPlugins::TamtamVagrantReload::VERSION
|
9
|
+
gem.platform = Gem::Platform::RUBY
|
10
|
+
gem.license = "MIT"
|
11
|
+
gem.authors = "Vincent Zimmer"
|
12
|
+
gem.email = "vincent.zimmer@tamtam.lu"
|
13
|
+
gem.homepage = "https://bitbucket.org/tamtamdevteam/tamtam-vagrant-reload-plugin"
|
14
|
+
gem.description = "Reload vagrant VM as a provisioning step."
|
15
|
+
gem.summary = "Reload vagrant VM as a provisioning step. Reload can be conditional, based on file presence."
|
16
|
+
|
17
|
+
gem.add_development_dependency "rake"
|
18
|
+
|
19
|
+
# The following block of code determines the files that should be included
|
20
|
+
# in the gem. It does this by reading all the files in the directory where
|
21
|
+
# this gemspec is, and parsing out the ignored files from the gitignore.
|
22
|
+
# Note that the entire gitignore(5) syntax is not supported, specifically
|
23
|
+
# the "!" syntax, but it should mostly work correctly.
|
24
|
+
root_path = File.dirname(__FILE__)
|
25
|
+
all_files = Dir.chdir(root_path) { Dir.glob("**/{*,.*}") }
|
26
|
+
all_files.reject! { |file| [".", ".."].include?(File.basename(file)) }
|
27
|
+
gitignore_path = File.join(root_path, ".gitignore")
|
28
|
+
gitignore = File.readlines(gitignore_path)
|
29
|
+
gitignore.map! { |line| line.chomp.strip }
|
30
|
+
gitignore.reject! { |line| line.empty? || line =~ /^(#|!)/ }
|
31
|
+
|
32
|
+
unignored_files = all_files.reject do |file|
|
33
|
+
# Ignore any directories, the gemspec only cares about files
|
34
|
+
next true if File.directory?(file)
|
35
|
+
|
36
|
+
# Ignore any paths that match anything in the gitignore. We do
|
37
|
+
# two tests here:
|
38
|
+
#
|
39
|
+
# - First, test to see if the entire path matches the gitignore.
|
40
|
+
# - Second, match if the basename does, this makes it so that things
|
41
|
+
# like '.DS_Store' will match sub-directories too (same behavior
|
42
|
+
# as git).
|
43
|
+
#
|
44
|
+
gitignore.any? do |ignore|
|
45
|
+
File.fnmatch(ignore, file, File::FNM_PATHNAME) ||
|
46
|
+
File.fnmatch(ignore, File.basename(file), File::FNM_PATHNAME)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
gem.files = unignored_files
|
51
|
+
gem.executables = unignored_files.map { |f| f[/^bin\/(.*)/, 1] }.compact
|
52
|
+
gem.require_path = 'lib'
|
53
|
+
end
|
metadata
ADDED
@@ -0,0 +1,799 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tamtam-vagrant-reload
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '1.1'
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Vincent Zimmer
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-06-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: Reload vagrant VM as a provisioning step.
|
28
|
+
email: vincent.zimmer@tamtam.lu
|
29
|
+
executables: []
|
30
|
+
extensions: []
|
31
|
+
extra_rdoc_files: []
|
32
|
+
files:
|
33
|
+
- Gemfile
|
34
|
+
- lib/tamtam-vagrant-reload/version.rb
|
35
|
+
- lib/tamtam-vagrant-reload-config.rb
|
36
|
+
- lib/tamtam-vagrant-reload-provisioner.rb
|
37
|
+
- lib/tamtam-vagrant-reload.rb
|
38
|
+
- LICENSE.txt
|
39
|
+
- Rakefile
|
40
|
+
- README.md
|
41
|
+
- tamtam-vagrant-reload.gemspec
|
42
|
+
- vendor/cache/latest_specs.4.8
|
43
|
+
- vendor/cache/latest_specs.4.8.gz
|
44
|
+
- vendor/cache/prerelease_specs.4.8
|
45
|
+
- vendor/cache/prerelease_specs.4.8.gz
|
46
|
+
- vendor/cache/quick/Marshal.4.8/bigdecimal-1.2.0.gemspec.rz
|
47
|
+
- vendor/cache/quick/Marshal.4.8/io-console-0.4.2.gemspec.rz
|
48
|
+
- vendor/cache/quick/Marshal.4.8/json-1.7.7.gemspec.rz
|
49
|
+
- vendor/cache/quick/Marshal.4.8/minitest-4.3.2.gemspec.rz
|
50
|
+
- vendor/cache/quick/Marshal.4.8/psych-2.0.0.gemspec.rz
|
51
|
+
- vendor/cache/quick/Marshal.4.8/rake-0.9.6.gemspec.rz
|
52
|
+
- vendor/cache/quick/Marshal.4.8/rdoc-4.0.0.gemspec.rz
|
53
|
+
- vendor/cache/quick/Marshal.4.8/test-unit-2.0.0.0.gemspec.rz
|
54
|
+
- vendor/cache/specs.4.8
|
55
|
+
- vendor/cache/specs.4.8.gz
|
56
|
+
- vendor/cache/tamtam-vagrant-reload
|
57
|
+
- vendor/cache/vagrant-0ac2a8738841/bin/vagrant
|
58
|
+
- vendor/cache/vagrant-0ac2a8738841/CHANGELOG.md
|
59
|
+
- vendor/cache/vagrant-0ac2a8738841/config/default.rb
|
60
|
+
- vendor/cache/vagrant-0ac2a8738841/contrib/bash/completion.sh
|
61
|
+
- vendor/cache/vagrant-0ac2a8738841/contrib/emacs/vagrant.el
|
62
|
+
- vendor/cache/vagrant-0ac2a8738841/contrib/README.md
|
63
|
+
- vendor/cache/vagrant-0ac2a8738841/contrib/vim/vagrantfile.vim
|
64
|
+
- vendor/cache/vagrant-0ac2a8738841/CONTRIBUTING.md
|
65
|
+
- vendor/cache/vagrant-0ac2a8738841/Gemfile
|
66
|
+
- vendor/cache/vagrant-0ac2a8738841/keys/README.md
|
67
|
+
- vendor/cache/vagrant-0ac2a8738841/keys/vagrant
|
68
|
+
- vendor/cache/vagrant-0ac2a8738841/keys/vagrant.pub
|
69
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builder.rb
|
70
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/box_add.rb
|
71
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/call.rb
|
72
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/config_validate.rb
|
73
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/confirm.rb
|
74
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/destroy_confirm.rb
|
75
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/env_set.rb
|
76
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/graceful_halt.rb
|
77
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/handle_box_url.rb
|
78
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb
|
79
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/lock.rb
|
80
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/mixin_provisioners.rb
|
81
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/nfs.rb
|
82
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/provision.rb
|
83
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/provisioner_cleanup.rb
|
84
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/set_hostname.rb
|
85
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/ssh_exec.rb
|
86
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/ssh_run.rb
|
87
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/wait_for_communicator.rb
|
88
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/general/package.rb
|
89
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/hook.rb
|
90
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/runner.rb
|
91
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/warden.rb
|
92
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action.rb
|
93
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/batch_action.rb
|
94
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/box.rb
|
95
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/box_collection.rb
|
96
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/cli.rb
|
97
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/loader.rb
|
98
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v1/dummy_config.rb
|
99
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v1/loader.rb
|
100
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v1/root.rb
|
101
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v1.rb
|
102
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v2/dummy_config.rb
|
103
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v2/loader.rb
|
104
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v2/root.rb
|
105
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v2/util.rb
|
106
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v2.rb
|
107
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/version_base.rb
|
108
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config.rb
|
109
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/environment.rb
|
110
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/errors.rb
|
111
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/guest.rb
|
112
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/hosts.rb
|
113
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/machine.rb
|
114
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/machine_state.rb
|
115
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/command.rb
|
116
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/communicator.rb
|
117
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/config.rb
|
118
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/errors.rb
|
119
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/guest.rb
|
120
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/host.rb
|
121
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/manager.rb
|
122
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/plugin.rb
|
123
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/provider.rb
|
124
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/provisioner.rb
|
125
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1.rb
|
126
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/command.rb
|
127
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/communicator.rb
|
128
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/components.rb
|
129
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/config.rb
|
130
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/errors.rb
|
131
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/guest.rb
|
132
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/host.rb
|
133
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/manager.rb
|
134
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/plugin.rb
|
135
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/provider.rb
|
136
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/provisioner.rb
|
137
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2.rb
|
138
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin.rb
|
139
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/registry.rb
|
140
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/ui.rb
|
141
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/ansi_escape_code_remover.rb
|
142
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/busy.rb
|
143
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/counter.rb
|
144
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/downloader.rb
|
145
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/file_checksum.rb
|
146
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/file_mode.rb
|
147
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/hash_with_indifferent_access.rb
|
148
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/is_port_open.rb
|
149
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/line_ending_helpers.rb
|
150
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/network_ip.rb
|
151
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/platform.rb
|
152
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/retryable.rb
|
153
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/safe_chdir.rb
|
154
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/safe_exec.rb
|
155
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/safe_puts.rb
|
156
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/scoped_hash_override.rb
|
157
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/ssh.rb
|
158
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/stacked_proc_runner.rb
|
159
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/string_block_editor.rb
|
160
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/subprocess.rb
|
161
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/template_renderer.rb
|
162
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/which.rb
|
163
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util.rb
|
164
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant/version.rb
|
165
|
+
- vendor/cache/vagrant-0ac2a8738841/lib/vagrant.rb
|
166
|
+
- vendor/cache/vagrant-0ac2a8738841/LICENSE
|
167
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/add.rb
|
168
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/list.rb
|
169
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/remove.rb
|
170
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/repackage.rb
|
171
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/root.rb
|
172
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/plugin.rb
|
173
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/destroy/command.rb
|
174
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/destroy/plugin.rb
|
175
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/halt/command.rb
|
176
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/halt/plugin.rb
|
177
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/help/command.rb
|
178
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/help/plugin.rb
|
179
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/init/command.rb
|
180
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/init/plugin.rb
|
181
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/package/command.rb
|
182
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/package/plugin.rb
|
183
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/bundler_check.rb
|
184
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/install_gem.rb
|
185
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/license_plugin.rb
|
186
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/list_plugins.rb
|
187
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/plugin_exists_check.rb
|
188
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/prune_gems.rb
|
189
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/uninstall_plugin.rb
|
190
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action.rb
|
191
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/base.rb
|
192
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/install.rb
|
193
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/license.rb
|
194
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/list.rb
|
195
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/mixin_install_opts.rb
|
196
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/root.rb
|
197
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/uninstall.rb
|
198
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/update.rb
|
199
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/gem_helper.rb
|
200
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/plugin.rb
|
201
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/state_file.rb
|
202
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/provision/command.rb
|
203
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/provision/plugin.rb
|
204
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/reload/command.rb
|
205
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/reload/plugin.rb
|
206
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/resume/command.rb
|
207
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/resume/plugin.rb
|
208
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/ssh/command.rb
|
209
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/ssh/plugin.rb
|
210
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/ssh_config/command.rb
|
211
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/ssh_config/plugin.rb
|
212
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/status/command.rb
|
213
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/status/plugin.rb
|
214
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/suspend/command.rb
|
215
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/suspend/plugin.rb
|
216
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/up/command.rb
|
217
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/up/plugin.rb
|
218
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/commands/up/start_mixins.rb
|
219
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/communicators/ssh/communicator.rb
|
220
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/communicators/ssh/plugin.rb
|
221
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/arch/cap/change_host_name.rb
|
222
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/arch/cap/configure_networks.rb
|
223
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/arch/guest.rb
|
224
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/arch/plugin.rb
|
225
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/coreos/cap/change_host_name.rb
|
226
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/coreos/cap/configure_networks.rb
|
227
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/coreos/guest.rb
|
228
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/coreos/plugin.rb
|
229
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/change_host_name.rb
|
230
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/configure_networks.rb
|
231
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/halt.rb
|
232
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/mount_nfs_folder.rb
|
233
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb
|
234
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/shell_expand_guest_path.rb
|
235
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/verify_vmware_hgfs.rb
|
236
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/guest.rb
|
237
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/plugin.rb
|
238
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/debian/cap/change_host_name.rb
|
239
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/debian/cap/configure_networks.rb
|
240
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/debian/guest.rb
|
241
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/debian/plugin.rb
|
242
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/fedora/cap/configure_networks.rb
|
243
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/fedora/cap/network_scripts_dir.rb
|
244
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/fedora/guest.rb
|
245
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/fedora/plugin.rb
|
246
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/cap/change_host_name.rb
|
247
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/cap/configure_networks.rb
|
248
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/cap/halt.rb
|
249
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/cap/mount_nfs_folder.rb
|
250
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/guest.rb
|
251
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/plugin.rb
|
252
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/gentoo/cap/change_host_name.rb
|
253
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/gentoo/cap/configure_networks.rb
|
254
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/gentoo/guest.rb
|
255
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/gentoo/plugin.rb
|
256
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/halt.rb
|
257
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/mount_nfs.rb
|
258
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb
|
259
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/read_ip_address.rb
|
260
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/shell_expand_guest_path.rb
|
261
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/guest.rb
|
262
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/plugin.rb
|
263
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/omnios/cap/change_host_name.rb
|
264
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/omnios/guest.rb
|
265
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/omnios/plugin.rb
|
266
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/cap/change_host_name.rb
|
267
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/cap/configure_networks.rb
|
268
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/cap/halt.rb
|
269
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/cap/mount_nfs_folder.rb
|
270
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/guest.rb
|
271
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/plugin.rb
|
272
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/pld/cap/network_scripts_dir.rb
|
273
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/pld/guest.rb
|
274
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/pld/plugin.rb
|
275
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/redhat/cap/change_host_name.rb
|
276
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/redhat/cap/configure_networks.rb
|
277
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/redhat/cap/network_scripts_dir.rb
|
278
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/redhat/guest.rb
|
279
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/redhat/plugin.rb
|
280
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/cap/change_host_name.rb
|
281
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/cap/configure_networks.rb
|
282
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/cap/halt.rb
|
283
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
|
284
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/config.rb
|
285
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/guest.rb
|
286
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/plugin.rb
|
287
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/cap/change_host_name.rb
|
288
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/cap/configure_networks.rb
|
289
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/cap/halt.rb
|
290
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/cap/mount_virtualbox_shared_folder.rb
|
291
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/config.rb
|
292
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/guest.rb
|
293
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/plugin.rb
|
294
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/cap/change_host_name.rb
|
295
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/cap/configure_networks.rb
|
296
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/cap/network_scripts_dir.rb
|
297
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/guest.rb
|
298
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/plugin.rb
|
299
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/cap/change_host_name.rb
|
300
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/cap/mount_nfs.rb
|
301
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/cap/mount_virtualbox_shared_folder.rb
|
302
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/guest.rb
|
303
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/plugin.rb
|
304
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/arch/host.rb
|
305
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/arch/plugin.rb
|
306
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/bsd/host.rb
|
307
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/bsd/plugin.rb
|
308
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/fedora/host.rb
|
309
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/fedora/plugin.rb
|
310
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/freebsd/host.rb
|
311
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/freebsd/plugin.rb
|
312
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/gentoo/host.rb
|
313
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/gentoo/plugin.rb
|
314
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/linux/host.rb
|
315
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/linux/plugin.rb
|
316
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/opensuse/host.rb
|
317
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/opensuse/plugin.rb
|
318
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/slackware/host.rb
|
319
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/slackware/plugin.rb
|
320
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/windows/host.rb
|
321
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/hosts/windows/plugin.rb
|
322
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v1/config/nfs.rb
|
323
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v1/config/package.rb
|
324
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v1/config/ssh.rb
|
325
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v1/config/vagrant.rb
|
326
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v1/config/vm.rb
|
327
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v1/plugin.rb
|
328
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/nfs.rb
|
329
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/package.rb
|
330
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/ssh.rb
|
331
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/ssh_connect.rb
|
332
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/vagrant.rb
|
333
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/vm.rb
|
334
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/vm_provisioner.rb
|
335
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/vm_subvm.rb
|
336
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/plugin.rb
|
337
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/boot.rb
|
338
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/check_accessible.rb
|
339
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/check_created.rb
|
340
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/check_guest_additions.rb
|
341
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/check_running.rb
|
342
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/check_virtualbox.rb
|
343
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/clean_machine_folder.rb
|
344
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/clear_forwarded_ports.rb
|
345
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/clear_network_interfaces.rb
|
346
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/clear_shared_folders.rb
|
347
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/created.rb
|
348
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/customize.rb
|
349
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/destroy.rb
|
350
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
|
351
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/discard_state.rb
|
352
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/export.rb
|
353
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/forced_halt.rb
|
354
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/forward_ports.rb
|
355
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/import.rb
|
356
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/is_paused.rb
|
357
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/is_running.rb
|
358
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/is_saved.rb
|
359
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/match_mac_address.rb
|
360
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/message_already_running.rb
|
361
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/message_not_created.rb
|
362
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/message_not_running.rb
|
363
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/message_will_not_destroy.rb
|
364
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/network.rb
|
365
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/package.rb
|
366
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/package_vagrantfile.rb
|
367
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb
|
368
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/prepare_nfs_settings.rb
|
369
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/prune_nfs_exports.rb
|
370
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/resume.rb
|
371
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/sane_defaults.rb
|
372
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/set_name.rb
|
373
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/setup_package_files.rb
|
374
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/share_folders.rb
|
375
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/suspend.rb
|
376
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action.rb
|
377
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/config.rb
|
378
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/base.rb
|
379
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/meta.rb
|
380
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/version_4_0.rb
|
381
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/version_4_1.rb
|
382
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/version_4_2.rb
|
383
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/model/forwarded_port.rb
|
384
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/plugin.rb
|
385
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/provider.rb
|
386
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/util/compile_forwarded_ports.rb
|
387
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/ansible/config.rb
|
388
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/ansible/plugin.rb
|
389
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/ansible/provisioner.rb
|
390
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb
|
391
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/cap/linux/cfengine_installed.rb
|
392
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb
|
393
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb
|
394
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/cap/suse/cfengine_install.rb
|
395
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/config.rb
|
396
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/plugin.rb
|
397
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/provisioner.rb
|
398
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/config/base.rb
|
399
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/config/chef_client.rb
|
400
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/config/chef_solo.rb
|
401
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/plugin.rb
|
402
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/provisioner/base.rb
|
403
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/provisioner/chef_client.rb
|
404
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/provisioner/chef_solo.rb
|
405
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/file/config.rb
|
406
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/file/plugin.rb
|
407
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/file/provisioner.rb
|
408
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/config/puppet.rb
|
409
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/config/puppet_server.rb
|
410
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/plugin.rb
|
411
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/provisioner/puppet.rb
|
412
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/provisioner/puppet_server.rb
|
413
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/salt/bootstrap-salt.sh
|
414
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/salt/config.rb
|
415
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/salt/errors.rb
|
416
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/salt/plugin.rb
|
417
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/salt/provisioner.rb
|
418
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/shell/config.rb
|
419
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/shell/plugin.rb
|
420
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/shell/provisioner.rb
|
421
|
+
- vendor/cache/vagrant-0ac2a8738841/plugins/README.md
|
422
|
+
- vendor/cache/vagrant-0ac2a8738841/Rakefile
|
423
|
+
- vendor/cache/vagrant-0ac2a8738841/README.md
|
424
|
+
- vendor/cache/vagrant-0ac2a8738841/scripts/website_push_docs.sh
|
425
|
+
- vendor/cache/vagrant-0ac2a8738841/scripts/website_push_www.sh
|
426
|
+
- vendor/cache/vagrant-0ac2a8738841/tasks/acceptance.rake
|
427
|
+
- vendor/cache/vagrant-0ac2a8738841/tasks/bundler.rake
|
428
|
+
- vendor/cache/vagrant-0ac2a8738841/tasks/test.rake
|
429
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/commands/init/Vagrantfile.erb
|
430
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/commands/ssh_config/config.erb
|
431
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/config/messages.erb
|
432
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/config/validation_failed.erb
|
433
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/arch/network_dhcp.erb
|
434
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/arch/network_static.erb
|
435
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/coreos/etcd.service.erb
|
436
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/debian/network_dhcp.erb
|
437
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/debian/network_static.erb
|
438
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/fedora/network_dhcp.erb
|
439
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/fedora/network_static.erb
|
440
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/freebsd/network_dhcp.erb
|
441
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/freebsd/network_static.erb
|
442
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/gentoo/network_dhcp.erb
|
443
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/gentoo/network_static.erb
|
444
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/openbsd/network_dhcp.erb
|
445
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/openbsd/network_static.erb
|
446
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/redhat/network_dhcp.erb
|
447
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/redhat/network_static.erb
|
448
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/suse/network_dhcp.erb
|
449
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/guests/suse/network_static.erb
|
450
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/locales/en.yml
|
451
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/nfs/exports.erb
|
452
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/nfs/exports_freebsd.erb
|
453
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/nfs/exports_linux.erb
|
454
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/package_Vagrantfile.erb
|
455
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/provisioners/chef_client/client.erb
|
456
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/provisioners/chef_solo/solo.erb
|
457
|
+
- vendor/cache/vagrant-0ac2a8738841/templates/rgloader.rb
|
458
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/base.rb
|
459
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/box_test.rb
|
460
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/destroy_test.rb
|
461
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/halt_test.rb
|
462
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/init_test.rb
|
463
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/networking/host_only_test.rb
|
464
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/networking/port_forward_test.rb
|
465
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/package_test.rb
|
466
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/provisioning/basic_test.rb
|
467
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/provisioning/chef_solo_test.rb
|
468
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/provisioning/shell_test.rb
|
469
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/resume_test.rb
|
470
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/shared_folders_test.rb
|
471
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/chef_solo_basic/cookbooks/basic/recipes/default.rb
|
472
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/chef_solo_basic/README.md
|
473
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/chef_solo_json/cookbooks/basic/recipes/default.rb
|
474
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/chef_solo_json/README.md
|
475
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/provisioner_multi/cookbooks/basic/recipes/default.rb
|
476
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/provisioner_multi/README.md
|
477
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/ssh_test.rb
|
478
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/config.rb
|
479
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/isolated_environment.rb
|
480
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/matchers/have_color.rb
|
481
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/matchers/match_output.rb
|
482
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/matchers/succeed.rb
|
483
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/network_tests.rb
|
484
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/output.rb
|
485
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/shared/base_context.rb
|
486
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/shared/command_examples.rb
|
487
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/virtualbox.rb
|
488
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/suspend_test.rb
|
489
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/up_basic_test.rb
|
490
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/up_with_box_url.rb
|
491
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/vagrant_test.rb
|
492
|
+
- vendor/cache/vagrant-0ac2a8738841/test/acceptance/version_test.rb
|
493
|
+
- vendor/cache/vagrant-0ac2a8738841/test/config/acceptance_boxes.yml
|
494
|
+
- vendor/cache/vagrant-0ac2a8738841/test/support/isolated_environment.rb
|
495
|
+
- vendor/cache/vagrant-0ac2a8738841/test/support/tempdir.rb
|
496
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/base.rb
|
497
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/support/dummy_provider.rb
|
498
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/support/isolated_environment.rb
|
499
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/support/shared/base_context.rb
|
500
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builder_test.rb
|
501
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/call_test.rb
|
502
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/confirm_test.rb
|
503
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/env_set_test.rb
|
504
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/graceful_halt_test.rb
|
505
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/lock_test.rb
|
506
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/ssh_exec_test.rb
|
507
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/hook_test.rb
|
508
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/runner_test.rb
|
509
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/warden_test.rb
|
510
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/batch_action_test.rb
|
511
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/box_collection_test.rb
|
512
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/box_test.rb
|
513
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/cli_test.rb
|
514
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/loader_test.rb
|
515
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v1/dummy_config_test.rb
|
516
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v1/loader_test.rb
|
517
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v1/root_test.rb
|
518
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v2/dummy_config_test.rb
|
519
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v2/loader_test.rb
|
520
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v2/root_test.rb
|
521
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v2/util_test.rb
|
522
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config_test.rb
|
523
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/environment_test.rb
|
524
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/errors_test.rb
|
525
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/guest_test.rb
|
526
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/hosts_test.rb
|
527
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/machine_state_test.rb
|
528
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/machine_test.rb
|
529
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/command_test.rb
|
530
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/communicator_test.rb
|
531
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/config_test.rb
|
532
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/host_test.rb
|
533
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/manager_test.rb
|
534
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/plugin_test.rb
|
535
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/provider_test.rb
|
536
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/command_test.rb
|
537
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/communicator_test.rb
|
538
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/components_test.rb
|
539
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/config_test.rb
|
540
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/host_test.rb
|
541
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/manager_test.rb
|
542
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/plugin_test.rb
|
543
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/provider_test.rb
|
544
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/registry_test.rb
|
545
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/ansi_escape_code_remover_test.rb
|
546
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/downloader_test.rb
|
547
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/file_checksum_test.rb
|
548
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/hash_with_indifferent_access_test.rb
|
549
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/is_port_open_test.rb
|
550
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/line_endings_helper_test.rb
|
551
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/network_ip_test.rb
|
552
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/retryable_test.rb
|
553
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/safe_chdir_test.rb
|
554
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/scoped_hash_override_test.rb
|
555
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/ssh_test.rb
|
556
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/string_block_editor_test.rb
|
557
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/which_test.rb
|
558
|
+
- vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant_test.rb
|
559
|
+
- vendor/cache/vagrant-0ac2a8738841/vagrant.gemspec
|
560
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/config.rb
|
561
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/config.ru
|
562
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/Gemfile
|
563
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/helpers/sidebar_helpers.rb
|
564
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/lib/redirect_to_latest.rb
|
565
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/lib/redirect_v1_docs.rb
|
566
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/Procfile
|
567
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/README.md
|
568
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/404.html.erb
|
569
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/bullet_1.png
|
570
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/bullet_2.png
|
571
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/bullet_3.png
|
572
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/customers.png
|
573
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/customers_small.png
|
574
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/footer_background.png
|
575
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/footer_hashi_logo.png
|
576
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/footer_vagrant_logo.png
|
577
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/get_started_background.png
|
578
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/icon_caution.png
|
579
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/logo_docs.png
|
580
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/logo_docs_small.png
|
581
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/logo_small.png
|
582
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/logo_vagrant.png
|
583
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/open_close.png
|
584
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/search_icon.png
|
585
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/sidebar_background_docs.png
|
586
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/sidebar_background_inner.png
|
587
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/steps_background.png
|
588
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/vagrant_header_background.png
|
589
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/index.html.erb
|
590
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/backstretch.js
|
591
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/bootstrap.min.js
|
592
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/fittext.js
|
593
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/grid-overlay.js
|
594
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/jquery.js
|
595
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/less-1.3.0.min.js
|
596
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/modernizr.js
|
597
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/vagrantup.js
|
598
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/layouts/layout.erb
|
599
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_base.less
|
600
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_components.less
|
601
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_footer.less
|
602
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_media-queries.less
|
603
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_mixins.less
|
604
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_nav.less
|
605
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_pages.less
|
606
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_sidebar.less
|
607
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_type.less
|
608
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_variables.less
|
609
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/bootstrap.css
|
610
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/vagrantup.less
|
611
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/boxes/format.html.md
|
612
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/boxes.html.md
|
613
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/box.html.md
|
614
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/destroy.html.md
|
615
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/halt.html.md
|
616
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/index.html.md
|
617
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/init.html.md
|
618
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/package.html.md
|
619
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/plugin.html.md
|
620
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/provision.html.md
|
621
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/reload.html.md
|
622
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/resume.html.md
|
623
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/ssh.html.md
|
624
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/ssh_config.html.md
|
625
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/status.html.md
|
626
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/suspend.html.md
|
627
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/up.html.md
|
628
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/debugging.html.md
|
629
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/boxes.html.md
|
630
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/index.html.md
|
631
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/networking.html.md
|
632
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/project_setup.html.md
|
633
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/providers.html.md
|
634
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/provisioning.html.md
|
635
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/rebuild.html.md
|
636
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/synced_folders.html.md
|
637
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/teardown.html.md
|
638
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/up.html.md
|
639
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/index.html.md
|
640
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/backwards-compatibility.html.md
|
641
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/index.html.md
|
642
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/uninstallation.html.md
|
643
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/upgrading-from-1-0.html.md
|
644
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/upgrading.html.md
|
645
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/multi-machine/index.html.md
|
646
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/basic_usage.html.md
|
647
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/forwarded_ports.html.md
|
648
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/index.html.md
|
649
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/private_network.html.md
|
650
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/public_network.html.md
|
651
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/commands.html.md
|
652
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/configuration.html.md
|
653
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/development-basics.html.md
|
654
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/guest-capabilities.html.md
|
655
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/guests.html.md
|
656
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/hosts.html.md
|
657
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/index.html.md
|
658
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/packaging.html.md
|
659
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/providers.html.md
|
660
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/provisioners.html.md
|
661
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/usage.html.md
|
662
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/basic_usage.html.md
|
663
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/configuration.html.md
|
664
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/custom.html.md
|
665
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/default.html.md
|
666
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/index.html.md
|
667
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/installation.html.md
|
668
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/ansible.html.md
|
669
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/basic_usage.html.md
|
670
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/chef_client.html.md
|
671
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/chef_solo.html.md
|
672
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/index.html.md
|
673
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/puppet_agent.html.md
|
674
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/puppet_apply.html.md
|
675
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/shell.html.md
|
676
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/synced-folders/basic_usage.html.md
|
677
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/synced-folders/index.html.md
|
678
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/synced-folders/nfs.html.md
|
679
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/index.html.md
|
680
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/machine_settings.html.md
|
681
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/ssh_settings.html.md
|
682
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/vagrant_settings.html.md
|
683
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/version.html.md
|
684
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/virtualbox/boxes.html.md
|
685
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/virtualbox/configuration.html.md
|
686
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/virtualbox/index.html.md
|
687
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/virtualbox/usage.html.md
|
688
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/boxes.html.md
|
689
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/configuration.html.md
|
690
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/index.html.md
|
691
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/installation.html.md
|
692
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/known-issues.html.md
|
693
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/usage.html.md
|
694
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/why-vagrant/index.html.md
|
695
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/config.rb
|
696
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/config.ru
|
697
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/Gemfile
|
698
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/helpers/sidebar_helpers.rb
|
699
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/lib/legacy_redirect.rb
|
700
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/Procfile
|
701
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/README.md
|
702
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/404.html.erb
|
703
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/_sidebar_about.erb
|
704
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/_sidebar_blog.erb
|
705
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/_sidebar_support.html.erb
|
706
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/about.html.markdown
|
707
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/blog/2013-09-19-introducing-the-vagrant-blog.html.markdown
|
708
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/blog-archives.html.erb
|
709
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/blog.html.erb
|
710
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/blog_feed.xml.builder
|
711
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/bullet_1.png
|
712
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/bullet_2.png
|
713
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/bullet_3.png
|
714
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/customers.png
|
715
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/customers_small.png
|
716
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/footer_background.png
|
717
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/footer_hashi_logo.png
|
718
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/footer_vagrant_logo.png
|
719
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/get_started_background.png
|
720
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/icon_caution.png
|
721
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/logo_docs.png
|
722
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/logo_docs_small.png
|
723
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/logo_small.png
|
724
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/logo_vagrant.png
|
725
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/open_close.png
|
726
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/search_icon.png
|
727
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sidebar_background_docs.png
|
728
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sidebar_background_inner.png
|
729
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sponsors/fastly.png
|
730
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sponsors/kiip.png
|
731
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sponsors/softlayer.jpg
|
732
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sponsors/typekit.png
|
733
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/steps_background.png
|
734
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/vagrant_header_background.png
|
735
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/images/vagrant_vmware_background.png
|
736
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/index.html.erb
|
737
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/backstretch.js
|
738
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/bootstrap.min.js
|
739
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/fittext.js
|
740
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/grid-overlay.js
|
741
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/jquery.js
|
742
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/less-1.3.0.min.js
|
743
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/modernizr.js
|
744
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/vagrantup.js
|
745
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/layouts/blog_post.erb
|
746
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/layouts/inner.erb
|
747
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/layouts/layout.erb
|
748
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/sponsors.html.erb
|
749
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_base.less
|
750
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_components.less
|
751
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_footer.less
|
752
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_media-queries.less
|
753
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_mixins.less
|
754
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_modules.less
|
755
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_nav.less
|
756
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_pages.less
|
757
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_sidebar.less
|
758
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_type.less
|
759
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_variables.less
|
760
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/bootstrap.css
|
761
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/vagrantup.less
|
762
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/support.html.erb
|
763
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/vmware/eula.html.md
|
764
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/vmware/index.html.erb
|
765
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/vmware/privacy-policy.html.md
|
766
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/source/vmware/terms-of-service.html.md
|
767
|
+
- .gitignore
|
768
|
+
- vendor/cache/vagrant-0ac2a8738841/.bundlecache
|
769
|
+
- vendor/cache/vagrant-0ac2a8738841/.gitignore
|
770
|
+
- vendor/cache/vagrant-0ac2a8738841/.travis.yml
|
771
|
+
- vendor/cache/vagrant-0ac2a8738841/.yardopts
|
772
|
+
- vendor/cache/vagrant-0ac2a8738841/website/docs/.buildpacks
|
773
|
+
- vendor/cache/vagrant-0ac2a8738841/website/www/.buildpacks
|
774
|
+
homepage: https://bitbucket.org/tamtamdevteam/tamtam-vagrant-reload-plugin
|
775
|
+
licenses:
|
776
|
+
- MIT
|
777
|
+
metadata: {}
|
778
|
+
post_install_message:
|
779
|
+
rdoc_options: []
|
780
|
+
require_paths:
|
781
|
+
- lib
|
782
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
783
|
+
requirements:
|
784
|
+
- - '>='
|
785
|
+
- !ruby/object:Gem::Version
|
786
|
+
version: '0'
|
787
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
788
|
+
requirements:
|
789
|
+
- - '>='
|
790
|
+
- !ruby/object:Gem::Version
|
791
|
+
version: '0'
|
792
|
+
requirements: []
|
793
|
+
rubyforge_project:
|
794
|
+
rubygems_version: 2.0.14.1
|
795
|
+
signing_key:
|
796
|
+
specification_version: 4
|
797
|
+
summary: Reload vagrant VM as a provisioning step. Reload can be conditional, based
|
798
|
+
on file presence.
|
799
|
+
test_files: []
|