mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-30 23:05:11 +01:00
40b171ee94
Signed-off-by: Jeroen Rijken <jeroen.rijken@xs4all.nl>
46 lines
No EOL
1,015 B
Text
46 lines
No EOL
1,015 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/cups/backend/cups-pdf
|
|
profile cups-backend-pdf @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/fonts>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/user-download-strict>
|
|
|
|
capability chown,
|
|
capability setgid,
|
|
capability setuid,
|
|
capability dac_override,
|
|
|
|
unix peer=(label=cupsd),
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{sh_path} rix,
|
|
@{bin}/cp rix,
|
|
@{bin}/gs rix,
|
|
@{bin}/gsc rix,
|
|
@{lib}/ghostscript/** mr,
|
|
|
|
/usr/share/ghostscript/{,**} r,
|
|
|
|
/etc/papersize r,
|
|
/etc/cups/ r,
|
|
/etc/cups/cups-pdf.conf r,
|
|
/etc/cups/ppd/*.ppd r,
|
|
|
|
/var/log/cups/cups-pdf*_log w,
|
|
/var/spool/cups-pdf/{,**} rw,
|
|
/var/spool/cups/** r,
|
|
/var/tmp/gs_* rw,
|
|
|
|
/dev/tty rw,
|
|
|
|
include if exists <local/cups-backend-pdf>
|
|
} |