mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-30 14:55:15 +01:00
35 lines
873 B
Text
35 lines
873 B
Text
# 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>
|
|
|
|
@{FT_LIBDIR} = /{usr/,}lib/freetube
|
|
@{FT_LIBDIR} += /{usr/,}lib/freetube-vue
|
|
@{FT_LIBDIR} += /opt/FreeTube
|
|
@{FT_LIBDIR} += /opt/FreeTube-Vue
|
|
|
|
@{exec_path} = @{FT_LIBDIR}/chrome-sandbox
|
|
profile freetube-chrome-sandbox @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/deny-root-dir-access>
|
|
|
|
capability sys_admin,
|
|
capability setgid,
|
|
capability setuid,
|
|
capability sys_chroot,
|
|
|
|
@{exec_path} mr,
|
|
|
|
# Has to be lower "P"
|
|
@{FT_LIBDIR}/freetube{,-vue} rpx,
|
|
|
|
@{PROC}/@{pids}/ r,
|
|
owner @{PROC}/@{pid}/oom_{,score_}adj r,
|
|
deny owner @{PROC}/@{pid}/oom_{,score_}adj w,
|
|
|
|
include if exists <local/freetube-chrome-sandbox>
|
|
}
|