diff options
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/server/ca.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/server/ca.rb b/lib/puppet/server/ca.rb index 064fd496b..5c2d739b1 100644 --- a/lib/puppet/server/ca.rb +++ b/lib/puppet/server/ca.rb @@ -101,7 +101,7 @@ class Server # the csr and return the results Puppet.info "Signing certificate for %s" % hostname cert, cacert = @ca.sign(csr) - Puppet.info "Cert: %s; Cacert: %s" % [cert.class, cacert.class] + #Puppet.info "Cert: %s; Cacert: %s" % [cert.class, cacert.class] return [cert.to_pem, cacert.to_pem] else # just write out the csr for later signing if @ca.getclientcsr(hostname) |