diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-01-10 10:02:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-10 10:02:08 +0100 |
commit | 1ddbbe90b32e3c10be87d1da593dcd49c5d112ec (patch) | |
tree | 49bba64013f541732134895aa73c1c6b10b4e0d7 /src | |
parent | 5931d2530e9ab1b0fa0360602144d745b415ca42 (diff) | |
parent | aa438129337c86d3b0d02fb2248815790fc75105 (diff) | |
download | vyos-1x-1ddbbe90b32e3c10be87d1da593dcd49c5d112ec.tar.gz vyos-1x-1ddbbe90b32e3c10be87d1da593dcd49c5d112ec.zip |
Merge pull request #1146 from sever-sever/T3299-equ
squid: T3299: Add listen address 0.0.0.0
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/service_webproxy.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/conf_mode/service_webproxy.py b/src/conf_mode/service_webproxy.py index 8dfae348a..cbbd2e0bc 100755 --- a/src/conf_mode/service_webproxy.py +++ b/src/conf_mode/service_webproxy.py @@ -123,9 +123,6 @@ def verify(proxy): ldap_auth = dict_search('authentication.method', proxy) == 'ldap' for address, config in proxy['listen_address'].items(): - if not is_addr_assigned(address): - raise ConfigError( - f'listen-address "{address}" not assigned on any interface!') if ldap_auth and 'disable_transparent' not in config: raise ConfigError('Authentication can not be configured when ' \ 'proxy is in transparent mode') |