From 91416e1111086c3ca745c5f0364425d4e1638cff Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Sun, 3 May 2026 18:00:59 +0200 Subject: [PATCH] [tutorial v1.1_083] Redefine default value in custom type variable --- firefox/10-manual.yml | 6 ++++++ types/proxy/00-type.yml | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/firefox/10-manual.yml b/firefox/10-manual.yml index 1b3761b4..40a493dc 100644 --- a/firefox/10-manual.yml +++ b/firefox/10-manual.yml @@ -11,4 +11,10 @@ manual: http_proxy: description: HTTP Proxy type: proxy + + address: + default: null + + port: + default: 8080 ... diff --git a/types/proxy/00-type.yml b/types/proxy/00-type.yml index d5db5867..6877fb89 100644 --- a/types/proxy/00-type.yml +++ b/types/proxy/00-type.yml @@ -9,9 +9,12 @@ proxy: type: domainname params: allow_ip: true + default: + variable: __.http_proxy.address port: description: Proxy port type: port - default: 8080 + default: + variable: __.http_proxy.port ...