diff options
author | srividya0208 <a.srividya@vyos.io> | 2024-07-15 06:30:00 -0400 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-18 10:35:50 +0000 |
commit | 087c33f09237ca8d47b4d84ab52b466c3a141d8c (patch) | |
tree | 98aad533eb5293c9bcfb791ed742b05e4c1dec21 /data | |
parent | 87611cccbcb89bcf0fb3316afd7064a7d2f66b5b (diff) | |
download | vyos-1x-087c33f09237ca8d47b4d84ab52b466c3a141d8c.tar.gz vyos-1x-087c33f09237ca8d47b4d84ab52b466c3a141d8c.zip |
OpenVPN CLI-option: T6571: rename ncp-ciphers with data-ciphers
(cherry picked from commit b62b2f5f8a9c4f0a7dc26bce1f15843651119256)
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/openvpn/server.conf.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/openvpn/server.conf.j2 b/data/templates/openvpn/server.conf.j2 index bc3a6127f..408103558 100644 --- a/data/templates/openvpn/server.conf.j2 +++ b/data/templates/openvpn/server.conf.j2 @@ -208,8 +208,8 @@ tls-server {% if encryption.cipher is vyos_defined %} cipher {{ encryption.cipher | openvpn_cipher }} {% endif %} -{% if encryption.ncp_ciphers is vyos_defined %} -data-ciphers {{ encryption.ncp_ciphers | openvpn_ncp_ciphers }} +{% if encryption.data_ciphers is vyos_defined %} +data-ciphers {{ encryption.data_ciphers | openvpn_data_ciphers }} {% endif %} {% endif %} providers default |