21 lines
474 B
Text
21 lines
474 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2025 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/udev/bridge-network-interface
|
|
profile udev-bridge-network-interface @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
@{exec_path} mr,
|
|
@{sh_path} r,
|
|
|
|
/etc/default/bridge-utils r,
|
|
|
|
include if exists <local/udev-bridge-network-interface>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|