summaryrefslogtreecommitdiff
path: root/data/templates/system/curlrc.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-04-11 20:58:35 +0200
committerChristian Poessinger <christian@poessinger.com>2022-04-11 20:58:35 +0200
commitc8ae06b581cbf1a19789500ae15d07a863724272 (patch)
tree7f77e5d1f166afe90a4a3ab54a41983c63992185 /data/templates/system/curlrc.tmpl
parent129e7f1d266186e40c715de9481daad25544df2f (diff)
downloadvyos-1x-c8ae06b581cbf1a19789500ae15d07a863724272.tar.gz
vyos-1x-c8ae06b581cbf1a19789500ae15d07a863724272.zip
system-option: T4333: migrate to new vyos_defined Jinja2 test
Diffstat (limited to 'data/templates/system/curlrc.tmpl')
-rw-r--r--data/templates/system/curlrc.tmpl8
1 files changed, 3 insertions, 5 deletions
diff --git a/data/templates/system/curlrc.tmpl b/data/templates/system/curlrc.tmpl
index 3e5ce801c..be4efe8ba 100644
--- a/data/templates/system/curlrc.tmpl
+++ b/data/templates/system/curlrc.tmpl
@@ -1,8 +1,6 @@
-{% if http_client is defined %}
-{% if http_client.source_interface is defined %}
+{% if http_client.source_interface is vyos_defined %}
--interface "{{ http_client.source_interface }}"
-{% endif %}
-{% if http_client.source_address is defined %}
+{% endif %}
+{% if http_client.source_address is vyos_defined %}
--interface "{{ http_client.source_address }}"
-{% endif %}
{% endif %}