diff --git a/Docker/entrypoint.py b/Docker/entrypoint.py index 7961f0c..57234e0 100644 --- a/Docker/entrypoint.py +++ b/Docker/entrypoint.py @@ -31,16 +31,6 @@ ipv4 = True if os.getenv('IPV6', 'False').lower() in ('true', '1', 't'): ipv6 = True - -# DEPRECATED! -if os.getenv('IPV4_ONLY', 'False').lower() in ('true', '1', 't'): - ipv4 = True - ipv6 = False - logger.info('IPV4_ONLY is DEPRECATED! And will be removed!') -if os.getenv('IPV6_ONLY', 'False').lower() in ('true', '1', 't'): - ipv4 = False - ipv6 = True - logger.info('IPV6_ONLY is DEPRECATED! And will be removed!') if not all([os.getenv('DOMAIN'), os.getenv('SECRETAPIKEY'), os.getenv('APIKEY')]): logger.info('Please set DOMAIN, SECRETAPIKEY and APIKEY')