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

The recently added unconfined profiles use the binary name for the local include instead of the profile name. Switch to using the profile name for the local include. Signed-off-by: John Johansen <john.johansen@canonical.com>
12 lines
349 B
Text
12 lines
349 B
Text
# This profile allows everything and only exists to give the
|
|
# application a name instead of having the label "unconfined"
|
|
|
|
abi <abi/4.0>,
|
|
include <tunables/global>
|
|
|
|
profile chrome /opt/google/chrome/chrome flags=(unconfined) {
|
|
userns,
|
|
|
|
# Site-specific additions and overrides. See local/README for details.
|
|
include if exists <local/chrome>
|
|
}
|