Fix hardcoded rp-pppoe.so location - thanks to Nestor

This commit is contained in:
John Crisp 2025-07-09 12:47:06 +02:00
parent 08d064bd3d
commit 09908697a4
3 changed files with 16 additions and 3 deletions

View File

@ -1 +1,6 @@
LINUX_PLUGIN=/usr/lib64/pppd/2.4.5/rp-pppoe.so {
# Find Roaring Penguin pppoe plugin
my ($plugin) = glob "/usr/lib*/pppd/*/rp-pppoe.so";
$plugin ||= "pppoe_plugin_could_not_be_found";
$OUT .= "LINUX_PLUGIN=$plugin\n";
}

View File

@ -1 +1,6 @@
plugin /usr/lib64/pppd/2.4.5/rp-pppoe.so {
# 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";
}

View File

@ -4,7 +4,7 @@ Summary: smeserver server and gateway - base module
%define name smeserver-base %define name smeserver-base
Name: %{name} Name: %{name}
%define version 11.0.0 %define version 11.0.0
%define release 33 %define release 34
Version: %{version} Version: %{version}
Release: %{release}%{?dist} Release: %{release}%{?dist}
License: GPL License: GPL
@ -182,6 +182,9 @@ fi
%changelog %changelog
* Wed Jul 09 2025 John Crisp <jcrisp@safeandsoundit.co.uk> 11.0.0-34.sme
- fix hardcoded rp-pppoe.so location - Thanks Nestor [SME: 13074]
* Thu Jun 12 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-33.sme * Thu Jun 12 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-33.sme
- fix autorenew of self-signed certificate [SME: 12218] - fix autorenew of self-signed certificate [SME: 12218]
strips unsupported characters, use utf8 encoding strips unsupported characters, use utf8 encoding