puppetdb_rundeck 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +3 -0
- data/lib/model/endpoint.rb +1 -1
- data/puppetdb_rundeck.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/lib/model/endpoint.rb
CHANGED
@@ -22,7 +22,7 @@ class EndPoint
|
|
22
22
|
per_type_cache = "/tmp/puppetdb-resource.#{type}"
|
23
23
|
|
24
24
|
THREAD_COUNT.times.map {
|
25
|
-
Thread.new(nodes
|
25
|
+
Thread.new(nodes) do |nodes|
|
26
26
|
while node = mutex.synchronize { nodes.pop }
|
27
27
|
host = node['name']
|
28
28
|
facts = @db_helper.get_facts(host)
|
data/puppetdb_rundeck.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |spec|
|
5
5
|
spec.name = 'puppetdb_rundeck'
|
6
|
-
spec.version = '0.3.
|
6
|
+
spec.version = '0.3.1'
|
7
7
|
spec.authors = ['liamjbennett']
|
8
8
|
spec.email = ['lbennett@opentable.com']
|
9
9
|
spec.summary = %q{A sinatra based application to provide integration between PuppetDB and Rundeck}
|