* Wed Aug 27 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-35.sme

- improve pppoe plugin patch [SME: 13074]
- handle both EC and RSA key/cert with esmith::ssl [SME: 11772]
This commit is contained in:
2025-08-27 16:10:25 -04:00
parent 09908697a4
commit 4e486bf182
6 changed files with 68 additions and 21 deletions

View File

@@ -1,6 +1,11 @@
{
# Find Roaring Penguin pppoe plugin
my ($plugin) = glob "/usr/lib*/pppd/*/rp-pppoe.so";
$plugin ||= "pppoe_plugin_could_not_be_found";
$OUT .= "plugin $plugin\n";
}
$OUT = "";
my $inkernel = "yes"; #$pppoe{InKernel} || "yes"; # we force inkernel for performance
if ($inkernel eq "yes")
{
# Find Roaring Penguin pppoe plugin
my ($plugin) = glob "/usr/lib*/pppd/*/rp-pppoe.so";
$plugin ||= "pppoe_plugin_could_not_be_found";
$OUT .= "plugin $plugin\n";
}
}