diff --git a/security/pfSense-pkg-openvpn-client-export/Makefile b/security/pfSense-pkg-openvpn-client-export/Makefile index 5765e0a0fe6e..3b8cabd09b00 100644 --- a/security/pfSense-pkg-openvpn-client-export/Makefile +++ b/security/pfSense-pkg-openvpn-client-export/Makefile @@ -2,7 +2,7 @@ PORTNAME= pfSense-pkg-openvpn-client-export PORTVERSION= 1.3.15 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= # empty DISTFILES= # empty diff --git a/security/pfSense-pkg-openvpn-client-export/files/usr/local/www/vpn_openvpn_export.php b/security/pfSense-pkg-openvpn-client-export/files/usr/local/www/vpn_openvpn_export.php index d51ccba62ee5..d1dcee3eb6fd 100644 --- a/security/pfSense-pkg-openvpn-client-export/files/usr/local/www/vpn_openvpn_export.php +++ b/security/pfSense-pkg-openvpn-client-export/files/usr/local/www/vpn_openvpn_export.php @@ -463,7 +463,7 @@ $section->addInput(new Form_Checkbox( 'usepkcs11', 'PKCS#11 Certificate Storage', - 'Use PKCS#11 storage instead of local files.', + 'Use PKCS#11 storage device (cryptographic token, HSM, smart card) instead of local files.', $cfg['usepkcs11'] )); @@ -471,13 +471,14 @@ 'pkcs11providers', 'PKCS#11 Providers', 'text', - $cfg['kcs11providers'] -))->setHelp('Enter the path to the PKCS#11 providers.'); + $cfg['pkcs11providers'] +))->setHelp('Enter the client local path to the PKCS#11 provider(s) (DLL, module), multiple separated by a space character.'); $section->addInput(new Form_Input( 'pkcs11id', - 'PKCS#11 ID' -)); + 'PKCS#11 ID', + 'text' +))->setHelp('Enter the object\'s ID on the PKCS#11 device.'); $section->addInput(new Form_Checkbox( 'usetoken',