syntax error fix
This commit is contained in:
parent
4f7957a5ab
commit
eb36091d41
|
@ -592,7 +592,7 @@ def check_dnssec(domain, env, output, dns_zonefiles, is_checking_primary=False):
|
|||
# record that we suggest using is for the KSK (and that's how the DS records were generated).
|
||||
# We'll also give the nice name for the key algorithm.
|
||||
dnssec_keys_file = os.path.join(env['STORAGE_ROOT'], 'dns/dnssec/%s.conf' % alg_name_map[ds_alg])
|
||||
if os.path.exists(dnssec_keys_file)
|
||||
if os.path.isfile(dnssec_keys_file):
|
||||
dnssec_keys = load_env_vars_from_file(dnssec_keys_file)
|
||||
dnsssec_pubkey = open(os.path.join(env['STORAGE_ROOT'], 'dns/dnssec/' + dnssec_keys['KSK'] + '.key')).read().split("\t")[3].split(" ")[3]
|
||||
|
||||
|
|
Loading…
Reference in New Issue