summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/x509.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-09-17 19:11:39 +0200
committervarac <varacanero@zeromail.org>2013-09-18 17:44:20 +0200
commitbdfef97e49f17c74158084e10e7d0121cc70dd42 (patch)
treee26e697c75da496ca892f1868c3607f858280f7d /puppet/modules/site_config/manifests/x509.pp
parentca3f34da520ff835d383aa82f528adf927d3364f (diff)
openvpn should use /usr/local/share/ca-certificates/leap_ca.crt (Feature #3831)
Diffstat (limited to 'puppet/modules/site_config/manifests/x509.pp')
-rw-r--r--puppet/modules/site_config/manifests/x509.pp5
1 files changed, 5 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/x509.pp b/puppet/modules/site_config/manifests/x509.pp
index 879285dd..2660c523 100644
--- a/puppet/modules/site_config/manifests/x509.pp
+++ b/puppet/modules/site_config/manifests/x509.pp
@@ -4,6 +4,7 @@ class site_config::x509 {
$key = $x509['key']
$cert = $x509['cert']
$ca = $x509['ca_cert']
+ $client_ca = $x509['client_ca_cert']
x509::key { $site_config::params::cert_name:
content => $key
@@ -16,4 +17,8 @@ class site_config::x509 {
x509::ca { $site_config::params::ca_name:
content => $ca
}
+
+ x509::ca { $site_config::params::ca_bundle_name:
+ content => "${ca}${client_ca}"
+ }
}