Skip to content

Commit

Permalink
allow mangle to work on IPA DC
Browse files Browse the repository at this point in the history
  • Loading branch information
nazunalika committed Oct 2, 2024
1 parent f482ef6 commit 678c807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mangle/ipa/ipaauditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def read():
outter_info['ipa_joined_name'] = __config['global']['host']
outter_info['ipa_domain'] = __config['global']['domain']
outter_info['ipa_realm'] = __config['global']['realm']
outter_info['registered_dc'] = __config['global']['server']
outter_info['registered_dc'] = __config['global']['host'] if not __config['global'].get('server', None) else __config['global']['server']
return outter_info

class SssctlInfo:
Expand Down

0 comments on commit 678c807

Please sign in to comment.