summaryrefslogtreecommitdiffstats
path: root/lib/puppet/sslcertificates/ca.rb
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-04-19 15:35:04 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-04-19 15:35:04 +0000
commitd2634baa0ec8dc00170bd54bea25f526c8a7ed97 (patch)
treed5c265653d3dfd7071708e458435292dd90212b1 /lib/puppet/sslcertificates/ca.rb
parent449f6626904cbf4165a3e481e8b9c7433be997d8 (diff)
downloadpuppet-d2634baa0ec8dc00170bd54bea25f526c8a7ed97.tar.gz
puppet-d2634baa0ec8dc00170bd54bea25f526c8a7ed97.tar.xz
puppet-d2634baa0ec8dc00170bd54bea25f526c8a7ed97.zip
Fixing #118; the hash is now always 8 hex characters, 0-padded. Also changed the CA cert name to the FQDN of the host serving the CA, rather than "CAcert".
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1117 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/sslcertificates/ca.rb')
-rw-r--r--lib/puppet/sslcertificates/ca.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/puppet/sslcertificates/ca.rb b/lib/puppet/sslcertificates/ca.rb
index 04d950e21..aacf3352c 100644
--- a/lib/puppet/sslcertificates/ca.rb
+++ b/lib/puppet/sslcertificates/ca.rb
@@ -177,8 +177,13 @@ class Puppet::SSLCertificates::CA
# Create the root certificate.
def mkrootcert
+ # Make the root cert's name the FQDN of the host running the CA.
+ name = Facter["hostname"].value
+ if domain = Facter["domain"].value
+ name += "." + domain
+ end
cert = Certificate.new(
- :name => "CAcert",
+ :name => name,
:cert => @config[:cacert],
:encrypt => @config[:capass],
:key => @config[:cakey],