vagrant-ansible_inventory 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bdbd38651f021703318997a99bd4a913479b114c
4
- data.tar.gz: 8826ac479c5f5f39c6a26ba71184c2485fc2b8d3
3
+ metadata.gz: 6ef0158a3b166dbbcb4d6062b32b91aa298cc516
4
+ data.tar.gz: 653f11e79ff3009f5dda874bd36ae304f94eb43a
5
5
  SHA512:
6
- metadata.gz: f0b5fc84035d12974127ef0a1e9e2fcfea16acafc57202e4e71b0c9bc727b268c3fbb56c3888774b60dda91aa51f514e996e54bc31d367828aaa2be11bc915fc
7
- data.tar.gz: a12894b377500a5321565f05f1cc4335af657dd39829e80cc94295b29596f6d9f07ad29227879f00c035b338c2f7742380dab24cb91c2edfcb6b4c182ff2194e
6
+ metadata.gz: eb366e464d2f5321b250aad7e3d8c223e8725b46933b514da25d805a471bf43acc9e349e5f91f72a7e722fa61a52e4e910bf75d06495afe9ba1949a0633b0efa
7
+ data.tar.gz: 81ad573fc1d3f5c6d9ea820594e6e0459dde6acebc015c564622199614ac9208837612f3959be315e7e4006892e3f930e77a4e9430b87514f6ea0354d6f2267a
data/Vagrantfile2 ADDED
@@ -0,0 +1,4 @@
1
+ Vagrant.configure(2) do |config|
2
+ config.vm.box = 'trusty64'
3
+ config.vm.network :private_network, type: :dhcp
4
+ end
data/Vagrantfile3 ADDED
@@ -0,0 +1,8 @@
1
+ Vagrant.configure(2) do |config|
2
+ config.vm.box = 'trusty64'
3
+ config.vm.network :private_network, type: :dhcp
4
+
5
+ config.ansible.groups = {
6
+ 'ubuntu' => ['default']
7
+ }
8
+ end
@@ -10,7 +10,7 @@ module VagrantPlugins
10
10
  end
11
11
 
12
12
  def finalize!
13
- @groups = 0 if @groups == UNSET_VALUE
13
+ @groups = {} if @groups == UNSET_VALUE
14
14
  end
15
15
 
16
16
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module AnsibleInventory
3
- VERSION = '0.0.3'
3
+ VERSION = '0.0.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-ansible_inventory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ignacio Galindo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-31 00:00:00.000000000 Z
11
+ date: 2015-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -53,6 +53,8 @@ files:
53
53
  - README.md
54
54
  - Rakefile
55
55
  - Vagrantfile
56
+ - Vagrantfile2
57
+ - Vagrantfile3
56
58
  - lib/vagrant/ansible_inventory.rb
57
59
  - lib/vagrant/ansible_inventory/commands/inventory.rb
58
60
  - lib/vagrant/ansible_inventory/commands/root.rb