mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00

Extend the policy syntax to have a rule that allows specifying all permissions for all rule types. allow all, This is useful for making blacklist based policy, but can also be useful when combined with other rule prefixes, eg. to add audit to all rules. audit access all, Signed-off-by: John Johansen <john.johansen@canonical.com>
8 lines
82 B
Text
8 lines
82 B
Text
#
|
|
#=Description basic all rule
|
|
#=EXRESULT PASS
|
|
#
|
|
/usr/bin/foo {
|
|
audit all,
|
|
|
|
}
|