summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-02-07 15:34:30 -0600
committerLuke Kanies <luke@madstop.com>2008-02-07 15:34:30 -0600
commitb293763f9ef2e134f18bb2c3fdaaaa502aa2c201 (patch)
treeeaa7e8eb8c4013be2e9c1560182558d393e5f5e7 /bin
parent2931723bae9e4226ab8eb7f6f806bf9a2ea5cbb8 (diff)
downloadpuppet-b293763f9ef2e134f18bb2c3fdaaaa502aa2c201.tar.gz
puppet-b293763f9ef2e134f18bb2c3fdaaaa502aa2c201.tar.xz
puppet-b293763f9ef2e134f18bb2c3fdaaaa502aa2c201.zip
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.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/puppetd2
1 files changed, 1 insertions, 1 deletions
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