diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/service_webproxy.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/conf_mode/service_webproxy.py b/src/conf_mode/service_webproxy.py index 12ae4135e..c40961bd5 100755 --- a/src/conf_mode/service_webproxy.py +++ b/src/conf_mode/service_webproxy.py @@ -27,7 +27,7 @@ from vyos.utils.permission import chmod_755 from vyos.utils.dict import dict_search from vyos.utils.file import write_file from vyos.utils.network import is_addr_assigned -from vyos.base import Warning +from vyos.base import Warning, DeprecationWarning from vyos import ConfigError from vyos import airbag @@ -220,6 +220,9 @@ def generate(proxy): generate_sg_rule_localdb(category, list_type, rule, proxy) check_blacklist_categorydb(rule_config_section) + DeprecationWarning('URL filtering with SquidGuard is deprecated and ' + 'will be removed in the future VyOS versions.') + return None |