diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-07-29 17:10:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-29 17:10:30 +0100 |
commit | 9149c657dfdb4d8297aba3ef1ed1346e670b071b (patch) | |
tree | 6294700b01ceeb3114e3a1b0a228f81ac0192467 /data | |
parent | f7eae255a38316b7e00a23f0ff1ea84fda156e01 (diff) | |
parent | b62b2f5f8a9c4f0a7dc26bce1f15843651119256 (diff) | |
download | vyos-1x-9149c657dfdb4d8297aba3ef1ed1346e670b071b.tar.gz vyos-1x-9149c657dfdb4d8297aba3ef1ed1346e670b071b.zip |
Merge pull request #3823 from srividya0208/T6571
OpenVPN CLI-option: T6571: rename ncp-ciphers with data-ciphers
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 6ac525443..f69519697 100644 --- a/data/templates/openvpn/server.conf.j2 +++ b/data/templates/openvpn/server.conf.j2 @@ -206,8 +206,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 |