diff options
| author | Luke Kanies <luke@madstop.com> | 2009-09-17 17:13:59 -0700 |
|---|---|---|
| committer | James Turnbull <james@lovedthanlost.net> | 2009-11-20 07:24:51 +1100 |
| commit | 28e1bc6e7b866727adfd16cba5418e08f1dd2fd8 (patch) | |
| tree | 09d913f03257f4defbb873d189aa619df27c3455 /lib/puppet/network/http | |
| parent | 2d4b795e81e4f7953210d51be56c77bed3b77609 (diff) | |
| download | puppet-28e1bc6e7b866727adfd16cba5418e08f1dd2fd8.tar.gz puppet-28e1bc6e7b866727adfd16cba5418e08f1dd2fd8.tar.xz puppet-28e1bc6e7b866727adfd16cba5418e08f1dd2fd8.zip | |
Always using the CA_name constant instead of "ca"
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet/network/http')
| -rw-r--r-- | lib/puppet/network/http/webrick.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/network/http/webrick.rb b/lib/puppet/network/http/webrick.rb index bf4bf8859..e0fe8b621 100644 --- a/lib/puppet/network/http/webrick.rb +++ b/lib/puppet/network/http/webrick.rb @@ -104,7 +104,7 @@ class Puppet::Network::HTTP::WEBrick results[:SSLStartImmediately] = true results[:SSLEnable] = true - unless Puppet::SSL::Certificate.find("ca") + unless Puppet::SSL::Certificate.find(Puppet::SSL::CA_NAME) raise Puppet::Error, "Could not find CA certificate" end |
