Skip to content

Commit

Permalink
Update entrypoint.py
Browse files Browse the repository at this point in the history
Remove deprecated code
  • Loading branch information
mietzen committed May 11, 2024
1 parent fff89eb commit 06f811b
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions Docker/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 06f811b

Please sign in to comment.