From 321b8fda8e50701d6a74e52332f5bbf8e7390d5c Mon Sep 17 00:00:00 2001 From: James Turnbull Date: Mon, 28 Jan 2008 22:42:57 +1100 Subject: Fixed #1006 - changed ldapnodes to node_terminus --- bin/puppetrun | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/puppetrun b/bin/puppetrun index 5f99d6325..fe981dadf 100755 --- a/bin/puppetrun +++ b/bin/puppetrun @@ -281,7 +281,7 @@ if File.exists? config Puppet.settings.parse(config) end -if Puppet[:ldapnodes] +if Puppet[:node_terminus] = "ldap" if options[:all] hosts = ldapnodes(:all, options[:fqdn]) puts "all: %s" % hosts.join(", ") -- cgit From b293763f9ef2e134f18bb2c3fdaaaa502aa2c201 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Thu, 7 Feb 2008 15:34:30 -0600 Subject: Applying patch by Jay to fix #989 -- missing crl files are correctly ignored, and you now use 'false' instead of 'none' to explicitly ignore them. --- bin/puppetd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/puppetd b/bin/puppetd index 297d4876d..e993d3aa8 100755 --- a/bin/puppetd +++ b/bin/puppetd @@ -374,7 +374,7 @@ if Puppet[:listen] and ! options[:onetime] # to clients. In the meantime, we just disable CRL checking if # the CRL file doesn't exist unless File::exist?(Puppet[:cacrl]) - Puppet[:cacrl] = 'none' + Puppet[:cacrl] = 'false' end handlers = nil -- cgit