18 lines
418 B
Text
18 lines
418 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022 Jeroen Rijken
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/cni/host-local /opt/cni/bin/host-local
|
|
profile cni-host-local @{exec_path} flags=(complain,attach_disconnected){
|
|
include <abstractions/base>
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/cni-host-local>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|