mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-05-10 09:18:25 +02:00
OpenVPN: Fix max-clients option
Fix: Triggered by https://forum.ipfire.org/viewtopic.php?f=16&t=23551 Since the 'DHCP_WINS' cgiparam has been set for the max-client directive, changes in the WUI has not been adapted to server.conf. Signed-off-by: Erik Kapfer <ummeegge@ipfire.org> Reviewed-by: Michael Tremer <michael.tremer@ipfire.org> Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
committed by
Arne Fitzenreiter
parent
c86bf0bf24
commit
fa5274763c
@@ -355,10 +355,10 @@ sub writeserverconf {
|
||||
print CONF "push \"dhcp-option WINS $sovpnsettings{DHCP_WINS}\"\n";
|
||||
}
|
||||
|
||||
if ($sovpnsettings{DHCP_WINS} eq '') {
|
||||
if ($sovpnsettings{MAX_CLIENTS} eq '') {
|
||||
print CONF "max-clients 100\n";
|
||||
}
|
||||
if ($sovpnsettings{DHCP_WINS} ne '') {
|
||||
if ($sovpnsettings{MAX_CLIENTS} ne '') {
|
||||
print CONF "max-clients $sovpnsettings{MAX_CLIENTS}\n";
|
||||
}
|
||||
print CONF "tls-verify /usr/lib/openvpn/verify\n";
|
||||
|
||||
Reference in New Issue
Block a user