Skip to content

Commit

Permalink
Merge pull request #56 from mietzen/cleanup
Browse files Browse the repository at this point in the history
Remove deprecated code
  • Loading branch information
mietzen authored May 11, 2024
2 parents fff89eb + 06f811b commit cc9f003
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 cc9f003

Please sign in to comment.