diff options
Diffstat (limited to 'lib/puppet/ssl/host.rb')
-rw-r--r-- | lib/puppet/ssl/host.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/ssl/host.rb b/lib/puppet/ssl/host.rb index ae91ceafb..9aaff8ad2 100644 --- a/lib/puppet/ssl/host.rb +++ b/lib/puppet/ssl/host.rb @@ -24,7 +24,7 @@ class Puppet::SSL::Host include Puppet::Util::Cacher cached_attr(:localhost) do - result = new() + result = new result.generate unless result.certificate result.key # Make sure it's read in result @@ -184,7 +184,7 @@ class Puppet::SSL::Host # If we can get a CA instance, then we're a valid CA, and we # should use it to sign our request; else, just try to read # the cert. - if ! certificate() and ca = Puppet::SSL::CertificateAuthority.instance + if ! certificate and ca = Puppet::SSL::CertificateAuthority.instance ca.sign(self.name) end end |