diff --git a/root/etc/e-smith/templates/etc/openvpn/routed/openvpn.conf/40auth b/root/etc/e-smith/templates/etc/openvpn/routed/openvpn.conf/40auth index d0fe66e..3834504 100644 --- a/root/etc/e-smith/templates/etc/openvpn/routed/openvpn.conf/40auth +++ b/root/etc/e-smith/templates/etc/openvpn/routed/openvpn.conf/40auth @@ -1,9 +1,8 @@ { my $userAuth = ${'openvpn-routed'}{Authentication} || 'CrtWithPass'; if ($userAuth eq 'CrtWithPass'){ - my $plugin_dir = (-d "/usr/lib64/openvpn/plugin/lib") ? - '/usr/lib64/openvpn/plugin/lib':'/usr/lib/openvpn/plugin/lib'; - $OUT .= "plugin ".$plugin_dir."/openvpn-auth-pam.so login\n"; + my $libdir = (-d "/usr/lib64/") ? '/usr/lib64' : '/usr/lib'; + $OUT .= "plugin " . $libdir . "/openvpn/plugins/openvpn-plugin-auth-pam.so login\n"; } $OUT .= ''; }