Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update entrypoint.py #56

Merged
merged 1 commit into from
May 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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