mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-07 19:05:39 +00:00
Adjustment to not require PRETTY_IPV6_PTR config key by default.
This commit is contained in:
parent
02bd378391
commit
4a8e607ed2
@ -7,9 +7,6 @@ import urlparse
|
|||||||
import itertools
|
import itertools
|
||||||
import traceback
|
import traceback
|
||||||
import onetimepass
|
import onetimepass
|
||||||
import dns.inet
|
|
||||||
import dns.name
|
|
||||||
import dns.reversename
|
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from distutils.version import StrictVersion
|
from distutils.version import StrictVersion
|
||||||
@ -31,11 +28,18 @@ if 'LDAP_TYPE' in app.config.keys():
|
|||||||
else:
|
else:
|
||||||
LDAP_TYPE = False
|
LDAP_TYPE = False
|
||||||
|
|
||||||
|
if 'PRETTY_IPV6_PTR' in app.config.keys():
|
||||||
|
import dns.inet
|
||||||
|
import dns.name
|
||||||
|
import dns.reversename
|
||||||
|
PRETTY_IPV6_PTR = app.config['PRETTY_IPV6_PTR']
|
||||||
|
else:
|
||||||
|
PRETTY_IPV6_PTR = False
|
||||||
|
|
||||||
PDNS_STATS_URL = app.config['PDNS_STATS_URL']
|
PDNS_STATS_URL = app.config['PDNS_STATS_URL']
|
||||||
PDNS_API_KEY = app.config['PDNS_API_KEY']
|
PDNS_API_KEY = app.config['PDNS_API_KEY']
|
||||||
PDNS_VERSION = app.config['PDNS_VERSION']
|
PDNS_VERSION = app.config['PDNS_VERSION']
|
||||||
API_EXTENDED_URL = utils.pdns_api_extended_uri(PDNS_VERSION)
|
API_EXTENDED_URL = utils.pdns_api_extended_uri(PDNS_VERSION)
|
||||||
PRETTY_IPV6_PTR = app.config['PRETTY_IPV6_PTR']
|
|
||||||
|
|
||||||
# Flag for pdns v4.x.x
|
# Flag for pdns v4.x.x
|
||||||
# TODO: Find another way to do this
|
# TODO: Find another way to do this
|
||||||
|
Loading…
Reference in New Issue
Block a user