mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 16:03:51 +01:00
64 lines
1.3 KiB
Plaintext
64 lines
1.3 KiB
Plaintext
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/update-dlocatedb
|
|
profile update-dlocatedb @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
@{exec_path} mr,
|
|
@{bin}/{,ba,da}sh rix,
|
|
|
|
@{bin}/cat rix,
|
|
@{bin}/uname rix,
|
|
@{bin}/sed rix,
|
|
@{bin}/sort rix,
|
|
@{bin}/uniq rix,
|
|
|
|
@{bin}/ionice rix,
|
|
|
|
/usr/share/dlocate/updatedb rCx -> updatedb,
|
|
@{bin}/dpkg rPx -> child-dpkg,
|
|
|
|
owner @{PROC}/@{pid}/fd/2 w,
|
|
|
|
/var/lib/dlocate/dpkg-list w,
|
|
|
|
# For shell pwd
|
|
/root/ r,
|
|
|
|
|
|
profile updatedb {
|
|
include <abstractions/base>
|
|
include <abstractions/perl>
|
|
|
|
/usr/share/dlocate/updatedb r,
|
|
@{bin}/perl r,
|
|
|
|
/etc/default/dlocate r,
|
|
|
|
/var/lib/dlocate/ r,
|
|
/var/lib/dlocate/dlocatedb rw,
|
|
/var/lib/dlocate/dlocatedb.stamps{,.new} rw,
|
|
/var/lib/dlocate/dlocatedb.{new,old} rw,
|
|
link /var/lib/dlocate/dlocatedb.old -> /var/lib/dlocate/dlocatedb,
|
|
|
|
/var/lib/dpkg/diversions r,
|
|
|
|
/var/lib/dpkg/info/ r,
|
|
/var/lib/dpkg/info/*.list r,
|
|
|
|
# For compression
|
|
@{bin}/gzip rix,
|
|
/var/lib/dlocate/dlocatedb.gz rw,
|
|
|
|
}
|
|
|
|
include if exists <local/update-dlocatedb>
|
|
}
|