35 lines
994 B
Text
35 lines
994 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2020-2021 Mikhail Morfikov
|
|
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/apt-listbugs/migratepins
|
|
profile apt-listbugs-migratepins @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/ruby>
|
|
|
|
@{exec_path} r,
|
|
@{bin}/ruby@{int}.@{int} rix,
|
|
|
|
/usr/share/rubygems-integration/*/specifications/ r,
|
|
/usr/share/rubygems-integration/*/specifications/*.gemspec rwk,
|
|
|
|
@{lib}/ruby/gems/*/specifications/ r,
|
|
@{lib}/ruby/gems/*/specifications/** r,
|
|
@{lib}/ruby/gems/*/specifications/**.gemspec rwk,
|
|
|
|
/etc/apt/preferences r,
|
|
|
|
owner @{tmp}/pin_migration_*-@{pid}-*/ w,
|
|
owner @{tmp}/pin_migration_*-@{pid}-*/preferences w,
|
|
owner @{tmp}/pin_migration_*-@{pid}-*/apt-listbugs w,
|
|
|
|
include if exists <local/apt-listbugs-migratepins>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|