Skip to content

Commit

Permalink
ipaauditor: add control checks
Browse files Browse the repository at this point in the history
  • Loading branch information
nazunalika committed Jul 15, 2024
1 parent 7557ff5 commit 39b2c56
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mangle/ipa/ipaauditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,14 @@ def entry(api, control, name, deep):
"""
Gets us started on the audit
"""
if control == 'hbac':
IPAAudit.hbac_pull(api, name, deep)
if control == 'rbac':
IPAAudit.rbac_pull(api, name, deep)
if control == 'user':
IPAAudit.user_pull(api, name, deep)
if control == 'group':
IPAAudit.group_pull(api, name, deep)

@staticmethod
def user_pull(api, name, deep):
Expand Down

0 comments on commit 39b2c56

Please sign in to comment.