20 lines
429 B
Text
20 lines
429 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/cc-remote-login-helper
|
|
profile cc-remote-login-helper @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
capability sys_nice,
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/cc-remote-login-helper>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|