vagrant-dotvm 0.18.0 → 0.19.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d1a0b966e30f8a8843acff919b09a657a7707538
4
- data.tar.gz: b9a2e41d972abc6e3b32203ef6a3d41c4718fb47
3
+ metadata.gz: fb0f0dec3b986a99a6364ff0b138895e37a8384b
4
+ data.tar.gz: 1c0fa33c1480785cad75d416c72a0eff5af6e491
5
5
  SHA512:
6
- metadata.gz: 7a4d3f12fc65c246efd5a0d2e1be028642b21c295038da4893db71030cf9a51b5153250de99f34de6b797f3443fc1ec2d50d43561d71b6677f73a52f23fb5f86
7
- data.tar.gz: b8c37706a997c8c55b8e190a8fffeb0b30121674cb695ade1df205f37051733fa38e2d24602c46c1190dc742edeb9e6efc834b45cec196c4a0e44f8745d471d8
6
+ metadata.gz: 93dc3a6c824124bde2e44fd97f5611b0853f6c0e41295701e92a9d88eec0d7f08f63e2f4ce2cf9e907d5860e6d39a54d1531c74a57cdfc29fb7b10ff18905678
7
+ data.tar.gz: 78de418f4f68b06549c4f5669c1eac316bba0204f38f67dc9b81f44a98eb699179b5ec75c795ad3fbd674731d615d3e3c1f3b3d2e9e2f6e228f39742ecf962e6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.19.0
2
+ * Ability to use inline shell provision
3
+
4
+ # 0.18.0
5
+ * Use sh to add hosts entries to cover more systems
6
+
1
7
  # 0.17.0
2
8
  * Add ability to add entries to /etc/hosts in guest
3
9
  * Ability to set custom options for VirtualBox
@@ -70,7 +70,8 @@ module VagrantPlugins
70
70
  machine_cfg[:provision].each do |provision|
71
71
  machine.vm.provision provision[:type], run: provision[:run] do |p|
72
72
  if provision[:type] == "shell"
73
- p.path = provision[:path]
73
+ p.path = provision[:path] unless provision[:path].nil?
74
+ p.inline = provision[:inline] unless provision[:inline].nil?
74
75
  p.args = provision[:args]
75
76
  p.privileged = provision[:privileged]
76
77
  elsif provision[:type] == "file"
@@ -109,6 +109,7 @@ module VagrantPlugins
109
109
  :type => prv["type"],
110
110
  :source => prv["source"],
111
111
  :destination => prv["destination"],
112
+ :inline => prv["inline"],
112
113
  :path => prv["path"],
113
114
  :args => prv["args"],
114
115
  :module_path => prv["module_path"],
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Dotvm
3
- VERSION = "0.18.0"
3
+ VERSION = "0.19.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-dotvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krzysztof Magosa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-13 00:00:00.000000000 Z
11
+ date: 2015-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler