mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-16 00:13:48 +01:00
37 lines
1019 B
Plaintext
37 lines
1019 B
Plaintext
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# Copyright (C) 2023-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/sfdisk
|
|
profile sfdisk @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/disks-write>
|
|
|
|
# Needed to avoid the following error:
|
|
# ioctl(3, BLKRRPART) = -1 EACCES (Permission denied)
|
|
#
|
|
# Checking that no-one is using this disk right now ... FAILED
|
|
# This disk is currently in use - repartitioning is probably a bad idea.
|
|
# Umount all file systems, and swapoff all swap partitions on this disk.
|
|
# Use the --no-reread flag to suppress this check.
|
|
capability sys_admin,
|
|
|
|
@{exec_path} mr,
|
|
|
|
# For backups
|
|
owner @{HOME}/**.{bak,back} rwk,
|
|
owner @{MOUNTS}/*/**.{bak,back} rwk,
|
|
|
|
# For disk images
|
|
owner @{user_img_dirs}/{,**} rwk,
|
|
|
|
owner @{sys}/devices/@{pci}/model r,
|
|
|
|
include if exists <local/sfdisk>
|
|
}
|