mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-30 06:45:10 +01:00
40a30dc310
Move vim syntax comment to the end of the file, separated by newline, as requested in #380.
43 lines
1,002 B
Text
43 lines
1,002 B
Text
# 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}/mke2fs @{bin}/mkfs.ext2 @{bin}/mkfs.ext3 @{bin}/mkfs.ext4
|
|
profile mke2fs @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/disks-write>
|
|
include <abstractions/user-download-strict>
|
|
|
|
capability sys_rawio,
|
|
|
|
@{exec_path} mr,
|
|
|
|
# To check for badblocks
|
|
@{sh_path} rix,
|
|
@{bin}/badblocks rPx,
|
|
|
|
/usr/share/file/misc/magic.mgc r,
|
|
|
|
/etc/mke2fs.conf r,
|
|
|
|
# A place for file images
|
|
owner @{user_img_dirs}/{,**} rwk,
|
|
|
|
# For virt-resize
|
|
owner /var/tmp/.guestfs-@{int}/** rwk,
|
|
|
|
owner @{run}/blkid/blkid.tab{,-@{rand6}} rw,
|
|
owner @{run}/blkid/blkid.tab.old rwl -> @{run}/blkid/blkid.tab,
|
|
|
|
@{PROC}/swaps r,
|
|
owner @{PROC}/@{pid}/mounts r,
|
|
|
|
include if exists <local/mke2fs>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|