[tutorial v1.1_112] A Jinja conditional disabled boolean variable

This commit is contained in:
egarette@silique.fr 2026-03-09 09:12:50 +01:00
parent 0d87dcc5be
commit d7b6de6ba4

View file

@ -2,5 +2,14 @@
---
version: 1.1
proxy_dns_socks5: false # Use proxy DNS when using SOCKS v5
proxy_dns_socks5:
description: Use proxy DNS when using SOCKS v5
default: false
disabled:
jinja: |-
{{ _.proxy_mode != "Manual proxy configuration" or _.manual.socks_proxy.version == 'v4' }}
return_type: boolean
description: |-
if "_.proxy_mode" is not "Manual proxy configuration"
or "_.manual.socks_proxy.version" is "v4"
...