From a9821bc63bf4294ed7bd0b13e17de1b4220db146 Mon Sep 17 00:00:00 2001 From: Raffael Schmid Date: Sat, 10 Jan 2015 14:22:18 +0100 Subject: [PATCH] fix easy rsa path for 6.0 - 6.3 --- manifests/params.pp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/manifests/params.pp b/manifests/params.pp index a327f848..9fda77c9 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -28,7 +28,11 @@ $additional_packages = ['easy-rsa'] $easyrsa_source = '/usr/share/easy-rsa/2.0' - # Redhat/Centos < 6.4 + # Redhat/Centos < 6.4 >= 6 + } elsif(versioncmp($::operatingsystemrelease, '6') >= 0) { + $easyrsa_source = '/usr/share/openvpn/easy-rsa/2.0' + + # Redhat/Centos < 6 } else { $easyrsa_source = '/usr/share/doc/openvpn/examples/easy-rsa/2.0' }