mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-05 17:01:00 +01:00
utils: make aa-status(8) work without python3-apparmor
Merge from trunk commit 3391 Bug: https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1480492 If python3-apparmor is not installed, aa-status aborts due to the ded import to handle fancier exception handling failing. This patch makes aa-status(8) work even in that case, falling back to normal python exceptions, to keep its required dependencies as small as possible. Signed-off-by: Steve Beattie <steve@nxnw.org> Acked-by: Seth Arnold <seth.arnold@canonical.com> Acked-by: Christian Boltz <apparmor@cboltz.de>
This commit is contained in:
parent
150350c42c
commit
6e1e27a931
1 changed files with 12 additions and 2 deletions
|
@ -12,9 +12,19 @@
|
|||
|
||||
import re, os, sys, errno
|
||||
|
||||
# PLEASE NOTE: we try to keep aa-status as minimal as possible, for
|
||||
# environments where installing all of the python utils and python
|
||||
# apparmor module may not make sense. Please think carefully before
|
||||
# importing anything from apparmor; see how the apparmor.fail import is
|
||||
# handled below.
|
||||
|
||||
# setup exception handling
|
||||
from apparmor.fail import enable_aa_exception_handler
|
||||
enable_aa_exception_handler()
|
||||
try:
|
||||
from apparmor.fail import enable_aa_exception_handler
|
||||
enable_aa_exception_handler()
|
||||
except ImportError:
|
||||
# just let normal python exceptions happen (LP: #1480492)
|
||||
pass
|
||||
|
||||
def cmd_enabled():
|
||||
'''Returns error code if AppArmor is not enabled'''
|
||||
|
|
Loading…
Add table
Reference in a new issue