diff options
author | varac <varacanero@zeromail.org> | 2012-12-10 23:16:27 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2012-12-10 23:16:27 +0100 |
commit | 3c52477a6c0cb4d4cc3caee2aea350acc51a5c8a (patch) | |
tree | 7e3c3b3a9557c7678737ab967b46089257e7f730 /puppet/modules/site_ca_daemon/manifests | |
parent | c8dda5249aa146239dd681db98da2c273dd07d77 (diff) |
also deploy ca_cert
Diffstat (limited to 'puppet/modules/site_ca_daemon/manifests')
-rw-r--r-- | puppet/modules/site_ca_daemon/manifests/init.pp | 33 |
1 files changed, 19 insertions, 14 deletions
diff --git a/puppet/modules/site_ca_daemon/manifests/init.pp b/puppet/modules/site_ca_daemon/manifests/init.pp index aa9219c1..db76e0fb 100644 --- a/puppet/modules/site_ca_daemon/manifests/init.pp +++ b/puppet/modules/site_ca_daemon/manifests/init.pp @@ -3,7 +3,7 @@ class site_ca_daemon { #$definition_files = hiera('definition_files') #$provider = $definition_files['provider'] #$eip_service = $definition_files['eip_service'] - $x509 = hiera('x509') + $x509 = hiera('x509') Class[Ruby] -> Class[rubygems] -> Class[bundler::install] @@ -29,17 +29,24 @@ class site_ca_daemon { } - x509::key { - 'leap_ca_daemon': - content => $x509['cert'], - #notify => Service[apache]; - } - - x509::cert { - 'leap_ca_daemon': - content => $x509['key'], - #notify => Service[apache]; - } + x509::key { + 'leap_ca_daemon': + content => $x509['key'], + #notify => Service[apache]; + } + + x509::cert { + 'leap_ca_daemon': + content => $x509['cert'], + #notify => Service[apache]; + } + + x509::ca { + 'leap_ca_daemon': + content => $x509['ca_cert'], + #notify => Service[apache]; + } + file { '/srv/leap_ca_daemon': ensure => directory, @@ -66,6 +73,4 @@ class site_ca_daemon { require => [ Class['bundler::install'], Vcsrepo['/srv/leap_ca_daemon'] ]; } - - } |