[tutorial v1.1_210] Username is mandatory if a password is set
This commit is contained in:
parent
465fc87296
commit
646643881c
1 changed files with 38 additions and 0 deletions
|
|
@ -71,6 +71,44 @@ proxies:
|
||||||
- SOCKS4
|
- SOCKS4
|
||||||
- SOCKS5
|
- SOCKS5
|
||||||
|
|
||||||
|
username:
|
||||||
|
description: Username
|
||||||
|
type: unix_user
|
||||||
|
mandatory:
|
||||||
|
jinja: |-
|
||||||
|
{% if _.password is not propertyerror and _.password %}
|
||||||
|
true
|
||||||
|
{% else %}
|
||||||
|
false
|
||||||
|
{% endif %}
|
||||||
|
return_type: boolean
|
||||||
|
description: if a password is set
|
||||||
|
disabled:
|
||||||
|
jinja: |-
|
||||||
|
{{ _.type not in ['HTTP', 'HTTPS/SSL', 'SOCKS4', 'SOCKS5'] }}
|
||||||
|
return_type: boolean
|
||||||
|
description: |-
|
||||||
|
if type not in:
|
||||||
|
- HTTP
|
||||||
|
- HTTPS/SSL
|
||||||
|
- SOCKS4
|
||||||
|
- SOCKS5
|
||||||
|
|
||||||
|
password:
|
||||||
|
description: Password
|
||||||
|
type: secret
|
||||||
|
mandatory: false
|
||||||
|
disabled:
|
||||||
|
jinja: |-
|
||||||
|
{{ _.type not in ['HTTP', 'HTTPS/SSL', 'SOCKS4', 'SOCKS5'] }}
|
||||||
|
return_type: boolean
|
||||||
|
description: |-
|
||||||
|
if type not in:
|
||||||
|
- HTTP
|
||||||
|
- HTTPS/SSL
|
||||||
|
- SOCKS4
|
||||||
|
- SOCKS5
|
||||||
|
|
||||||
url:
|
url:
|
||||||
description: URL
|
description: URL
|
||||||
type: web_address
|
type: web_address
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue