From fe4ca797ee815fad50d10e6b06229d522a34d5cf Mon Sep 17 00:00:00 2001 From: Stephen Gran Date: Sun, 25 Aug 2013 10:02:04 +0100 Subject: [PATCH] try pushing more certs Signed-off-by: Stephen Gran --- modules/ssl/manifests/init.pp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/ssl/manifests/init.pp b/modules/ssl/manifests/init.pp index 3d37fb866..dc6adc3d6 100644 --- a/modules/ssl/manifests/init.pp +++ b/modules/ssl/manifests/init.pp @@ -17,6 +17,14 @@ class ssl { force => true, source => 'puppet:///files/empty/' } + file { '/etc/ssl/certs': + ensure => directory, + source => 'puppet:///modules/ssl/servicecerts/', + recurse => true, + mode => '0755', + ignore => '*[^c][^r][^t]', + notify => Exec['c_rehash /etc/ssl/certs'], + } file { '/etc/ssl/debian/certs': ensure => directory, mode => '0755', @@ -63,4 +71,7 @@ class ssl { exec { 'c_rehash /etc/ssl/debian/certs': refreshonly => true, } + exec { 'c_rehash /etc/ssl/certs': + refreshonly => true, + } } -- 2.20.1