diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-02-24 09:47:12 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-02-24 09:47:12 +1100 |
commit | 939c952465815486da0d6c1a2207debb61a45618 (patch) | |
tree | 465d4d912012b434c2a818f780822fb997e78bf8 /lib/puppet | |
parent | f184228956fc4c2050a5901130fd506b8f069dd6 (diff) | |
download | puppet-939c952465815486da0d6c1a2207debb61a45618.tar.gz puppet-939c952465815486da0d6c1a2207debb61a45618.tar.xz puppet-939c952465815486da0d6c1a2207debb61a45618.zip |
Fixes ticket #1080
Diffstat (limited to 'lib/puppet')
-rwxr-xr-x | lib/puppet/sslcertificates.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/sslcertificates.rb b/lib/puppet/sslcertificates.rb index bd0ce8c92..0c579d0ad 100755 --- a/lib/puppet/sslcertificates.rb +++ b/lib/puppet/sslcertificates.rb @@ -72,7 +72,7 @@ module Puppet::SSLCertificates subject_alt_name << 'DNS:' + name.sub(/^[^.]+./, "puppet.") # add puppet.domain as an alias end key_usage = %w{digitalSignature keyEncipherment} - ext_key_usage = %w{serverAuth clientAuth} + ext_key_usage = %w{serverAuth clientAuth emailProtection} when :ocsp: basic_constraint = "CA:FALSE" key_usage = %w{nonRepudiation digitalSignature} |