mirror of https://gitlab.com/bashrc2/epicyon
More debug
parent
68db5ce090
commit
7cbc4cdda7
|
@ -883,7 +883,9 @@ if args.json:
|
|||
if not args.domain:
|
||||
args.domain = getConfigParam(baseDir, 'domain')
|
||||
signingPrivateKeyPem = getInstanceActorKey(baseDir, args.domain)
|
||||
if debug and signingPrivateKeyPem:
|
||||
if debug:
|
||||
print('baseDir: ' + str(baseDir))
|
||||
if signingPrivateKeyPem:
|
||||
print('Obtained instance actor signing key')
|
||||
else:
|
||||
print('Did not obtain instance actor key for ' + args.domain)
|
||||
|
@ -1899,7 +1901,9 @@ if args.actor:
|
|||
if not domain:
|
||||
domain = getConfigParam(baseDir, 'domain')
|
||||
signingPrivateKeyPem = getInstanceActorKey(baseDir, domain)
|
||||
if debug and signingPrivateKeyPem:
|
||||
if debug:
|
||||
print('baseDir: ' + str(baseDir))
|
||||
if signingPrivateKeyPem:
|
||||
print('Obtained instance actor signing key')
|
||||
else:
|
||||
print('Did not obtain instance actor key for ' + domain)
|
||||
|
|
Loading…
Reference in New Issue