python/sepolicy: search() also for dontaudit rules
dontaudit rules were accidentally dropped during rewrite to SETools 4 API in
97d5f6a2
Fixes:
>>> import sepolicy
>>> sepolicy.search(['dontaudit'])
[]
Signed-off-by: Petr Lautrbach <plautrba@redhat.com>
This commit is contained in:
parent
16e3953a76
commit
5013d2ba97
1 changed files with 2 additions and 0 deletions
|
@ -344,6 +344,8 @@ def search(types, seinfo=None):
|
|||
tertypes.append(NEVERALLOW)
|
||||
if AUDITALLOW in types:
|
||||
tertypes.append(AUDITALLOW)
|
||||
if DONTAUDIT in types:
|
||||
tertypes.append(DONTAUDIT)
|
||||
|
||||
if len(tertypes) > 0:
|
||||
q = setools.TERuleQuery(_pol,
|
||||
|
|
Loading…
Reference in a new issue