diff options
| author | varac <varacanero@zeromail.org> | 2013-09-19 12:19:00 +0200 | 
|---|---|---|
| committer | varac <varacanero@zeromail.org> | 2013-09-19 12:19:00 +0200 | 
| commit | 1ce6cb5a30c5ee73d6474ac9c1bbd4c7819d9a73 (patch) | |
| tree | ce7d548ec62a5d8107433318413a1e2de361c9c8 /puppet/modules/site_openvpn/manifests | |
| parent | e182d12c72743491805a3873e8b6cd804fe5394c (diff) | |
only deploy x509 stuff for nodes if it existes in hiera (Feature #3875)
Diffstat (limited to 'puppet/modules/site_openvpn/manifests')
| -rw-r--r-- | puppet/modules/site_openvpn/manifests/init.pp | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/puppet/modules/site_openvpn/manifests/init.pp b/puppet/modules/site_openvpn/manifests/init.pp index fe5ef87f..41f4c6d4 100644 --- a/puppet/modules/site_openvpn/manifests/init.pp +++ b/puppet/modules/site_openvpn/manifests/init.pp @@ -20,8 +20,12 @@  class site_openvpn {    tag 'leap_service' +  include site_config::x509::cert_key +  include site_config::x509::ca_bundle + +    Class['site_config::default'] -> Class['site_openvpn'] -   +    $openvpn_config   = hiera('openvpn')    $x509_config      = hiera('x509')    $openvpn_ports    = $openvpn_config['ports']  | 
