30 lines
664 B
Text
30 lines
664 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/ntfsclone
|
|
profile ntfsclone @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/disks-write>
|
|
include <abstractions/private-files-strict>
|
|
include <abstractions/user-download-strict>
|
|
|
|
capability sys_admin,
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{PROC}/@{pid}/mounts r,
|
|
|
|
# A place for backups
|
|
@{HOME}/* rwk,
|
|
@{MOUNTS}/** rwk,
|
|
|
|
include if exists <local/ntfsclone>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|