34 lines
748 B
Text
34 lines
748 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/ghc-pkg{,-*} @{lib}/ghc-@{version}/bin/ghc-pkg-@{version}
|
|
profile ghc-pkg @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
capability dac_read_search,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{sh_path} rix,
|
|
|
|
@{lib}/ghc{,-*}/bin/ghc-pkg{,-*} rix,
|
|
|
|
@{lib}/ghc{,-*}/lib/package.conf.d/* rw,
|
|
@{lib}/ghc{,-*}/lib/package.conf.d/package.cache.lock k,
|
|
|
|
/var/log/haskell-register.log rw,
|
|
|
|
@{sys}/devices/system/node/ r,
|
|
|
|
@{PROC}/@{pid}/task/@{tid}/comm rw,
|
|
|
|
include if exists <local/ghc-pkg>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|