summaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/params.pp')
-rw-r--r--manifests/params.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index 328f2cf..838ca1f 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -5,4 +5,14 @@ class openvpn::params {
default => 'nogroup'
}
+ $easyrsa_source = $::osfamily ? {
+ 'RedHat' => '/usr/share/doc/openvpn-2.2.2/easy-rsa/2.0',
+ default => '/usr/share/doc/openvpn/examples/easy-rsa/2.0'
+ }
+
+ $link_openssl_cnf = $::osfamily ? {
+ /(Debian|RedHat)/ => true,
+ default => false
+ }
+
}