28 lines
678 B
Text
28 lines
678 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
# vim:syntax=apparmor
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/snapshot
|
|
profile snapshot @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/audio-client>
|
|
include <abstractions/common/gnome>
|
|
include <abstractions/gstreamer>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{user_pictures_dirs}/Camera/{,**} rw,
|
|
owner @{user_videos_dirs}/Camera/{,**} rw,
|
|
|
|
owner @{PROC}/@{pid}/task/@{tid}/comm rw,
|
|
|
|
include if exists <local/snapshot>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|