diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-22 18:07:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-22 18:07:23 +0200 |
commit | e64322c2171a63d5fe52a431b948727d1df27d9c (patch) | |
tree | 4a5b70f38e4f7ca506df2d9a3ea270f2bf50f8a9 | |
parent | 7bc7c9e75e3b7bbbd51b9b75d222f8f2e34364a7 (diff) | |
parent | 8c8054ad5410e8aedf6ab7a0702b317872d4fd41 (diff) | |
download | vyos-1x-e64322c2171a63d5fe52a431b948727d1df27d9c.tar.gz vyos-1x-e64322c2171a63d5fe52a431b948727d1df27d9c.zip |
Merge pull request #3832 from sever-sever/T6594
T6594: Add missed pppd_compat module
-rw-r--r-- | data/templates/accel-ppp/ipoe.config.j2 | 3 | ||||
-rw-r--r-- | data/templates/accel-ppp/l2tp.config.j2 | 3 | ||||
-rw-r--r-- | data/templates/accel-ppp/pptp.config.j2 | 3 | ||||
-rw-r--r-- | data/templates/accel-ppp/sstp.config.j2 | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/data/templates/accel-ppp/ipoe.config.j2 b/data/templates/accel-ppp/ipoe.config.j2 index d87b90473..9729b295e 100644 --- a/data/templates/accel-ppp/ipoe.config.j2 +++ b/data/templates/accel-ppp/ipoe.config.j2 @@ -16,6 +16,9 @@ net-snmp {% if limits is vyos_defined %} connlimit {% endif %} +{% if extended_scripts is vyos_defined %} +pppd_compat +{% endif %} [core] thread-count={{ thread_count }} diff --git a/data/templates/accel-ppp/l2tp.config.j2 b/data/templates/accel-ppp/l2tp.config.j2 index db4db66a7..099bc59da 100644 --- a/data/templates/accel-ppp/l2tp.config.j2 +++ b/data/templates/accel-ppp/l2tp.config.j2 @@ -16,6 +16,9 @@ net-snmp {% if limits is vyos_defined %} connlimit {% endif %} +{% if extended_scripts is vyos_defined %} +pppd_compat +{% endif %} [core] thread-count={{ thread_count }} diff --git a/data/templates/accel-ppp/pptp.config.j2 b/data/templates/accel-ppp/pptp.config.j2 index 44f35998b..52ef3cb0e 100644 --- a/data/templates/accel-ppp/pptp.config.j2 +++ b/data/templates/accel-ppp/pptp.config.j2 @@ -16,6 +16,9 @@ net-snmp {% if limits is vyos_defined %} connlimit {% endif %} +{% if extended_scripts is vyos_defined %} +pppd_compat +{% endif %} [core] thread-count={{ thread_count }} diff --git a/data/templates/accel-ppp/sstp.config.j2 b/data/templates/accel-ppp/sstp.config.j2 index 38da829f3..45d0658af 100644 --- a/data/templates/accel-ppp/sstp.config.j2 +++ b/data/templates/accel-ppp/sstp.config.j2 @@ -16,6 +16,9 @@ net-snmp {% if limits is vyos_defined %} connlimit {% endif %} +{% if extended_scripts is vyos_defined %} +pppd_compat +{% endif %} [core] thread-count={{ thread_count }} |