ipaauditor: add control checks

This commit is contained in:
Louis Abel 2024-07-15 14:05:50 -07:00
parent 7557ff5987
commit 39b2c5601a
Signed by untrusted user: label
GPG Key ID: 2A6975660E424560

View File

@ -251,8 +251,14 @@ class IPAAudit:
"""
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):