mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-30 06:45:10 +01:00
41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# Copyright (C) 2021 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}{s,}bin/blkid
|
|
profile blkid @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/disks-read>
|
|
|
|
capability sys_rawio,
|
|
|
|
@{exec_path} mr,
|
|
|
|
/etc/blkid.conf r,
|
|
|
|
# The standard location of the cache file
|
|
# Without owner here if this tool should be used as a regular user
|
|
@{run}/blkid/ rw,
|
|
@{run}/blkid/blkid.tab{,-*} rw,
|
|
@{run}/blkid/blkid.tab.old rwl -> @{run}/blkid/blkid.tab,
|
|
# When the system doesn't have the /run/ dir, the cache file is placed under /etc/
|
|
@{etc_rw}/blkid.tab{,-*} rw,
|
|
@{etc_rw}/blkid.tab.old rwl -> /etc/blkid.tab,
|
|
|
|
# For the EVALUATE=scan method
|
|
@{PROC}/partitions r,
|
|
|
|
# Image files
|
|
@{HOME}/**.{iso,img,bin,mdf,nrg} r,
|
|
@{MOUNTS}/**.{iso,img,bin,mdf,nrg} r,
|
|
@{HOME}/**.{ISO,IMG,BIN,MDF,NRG} r,
|
|
@{MOUNTS}/**.{ISO,IMG,BIN,MDF,NRG} r,
|
|
|
|
include if exists <local/blkid>
|
|
}
|