feat(profile): merge dpkg-scripts and dpkg-script-tmp.
This commit is contained in:
parent
f3ed1a3006
commit
3848838e53
5 changed files with 16 additions and 63 deletions
|
|
@ -15,6 +15,8 @@ profile dpkg-preconfigure @{exec_path} {
|
||||||
include <abstractions/perl>
|
include <abstractions/perl>
|
||||||
include <abstractions/ssl_certs>
|
include <abstractions/ssl_certs>
|
||||||
|
|
||||||
|
capability dac_read_search,
|
||||||
|
|
||||||
@{exec_path} r,
|
@{exec_path} r,
|
||||||
|
|
||||||
@{sh_path} rix,
|
@{sh_path} rix,
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,8 @@ profile dpkg-script-systemd @{exec_path} {
|
||||||
|
|
||||||
@{sh_path} rix,
|
@{sh_path} rix,
|
||||||
|
|
||||||
|
@{coreutils_path} rix,
|
||||||
|
@{bin}/bootctl Px,
|
||||||
@{bin}/deb-systemd-helper Px,
|
@{bin}/deb-systemd-helper Px,
|
||||||
@{bin}/deb-systemd-invoke Px,
|
@{bin}/deb-systemd-invoke Px,
|
||||||
@{bin}/dpkg Cx -> dpkg,
|
@{bin}/dpkg Cx -> dpkg,
|
||||||
|
|
|
||||||
|
|
@ -1,57 +0,0 @@
|
||||||
# apparmor.d - Full set of apparmor profiles
|
|
||||||
# Copyright (C) 2025 Alexandre Pujol <alexandre@pujol.io>
|
|
||||||
# SPDX-License-Identifier: GPL-2.0-only
|
|
||||||
|
|
||||||
abi <abi/4.0>,
|
|
||||||
|
|
||||||
include <tunables/global>
|
|
||||||
|
|
||||||
@{exec_path} = /var/lib/dpkg/tmp.ci/@{dpkg_script_ext}
|
|
||||||
profile dpkg-script-tmp @{exec_path} flags=(attach_disconnected) {
|
|
||||||
include <abstractions/base>
|
|
||||||
include <abstractions/consoles>
|
|
||||||
include <abstractions/perl>
|
|
||||||
|
|
||||||
@{exec_path} mrix,
|
|
||||||
|
|
||||||
@{sh_path} rix,
|
|
||||||
@{coreutils_path} rix,
|
|
||||||
@{bin}/run-parts rix,
|
|
||||||
@{bin}/deb-systemd-invoke Px,
|
|
||||||
@{bin}/dpkg Px,
|
|
||||||
@{bin}/dpkg-divert Px,
|
|
||||||
@{bin}/dpkg-maintscript-helper Px,
|
|
||||||
@{bin}/kmod Cx -> kmod,
|
|
||||||
@{bin}/systemctl Cx -> systemctl,
|
|
||||||
/usr/share/debconf/frontend Px,
|
|
||||||
|
|
||||||
/usr/share/debconf/confmodule r,
|
|
||||||
|
|
||||||
/etc/kernel/preinst.d/*-microcode ix,
|
|
||||||
|
|
||||||
@{lib}/modules/*/.fresh-install w,
|
|
||||||
|
|
||||||
profile kmod {
|
|
||||||
include <abstractions/base>
|
|
||||||
include <abstractions/app/kmod>
|
|
||||||
|
|
||||||
include if exists <local/dpkg-script-tmp_kmod>
|
|
||||||
}
|
|
||||||
|
|
||||||
profile systemctl {
|
|
||||||
include <abstractions/base>
|
|
||||||
include <abstractions/app/systemctl>
|
|
||||||
|
|
||||||
capability net_admin,
|
|
||||||
capability sys_ptrace,
|
|
||||||
capability sys_resource,
|
|
||||||
|
|
||||||
@{bin}/systemd-tty-ask-password-agent Px,
|
|
||||||
|
|
||||||
include if exists <local/dpkg-script-tmp_systemctl>
|
|
||||||
}
|
|
||||||
|
|
||||||
include if exists <local/dpkg-script-tmp>
|
|
||||||
}
|
|
||||||
|
|
||||||
# vim:syntax=apparmor
|
|
||||||
|
|
@ -38,6 +38,7 @@ profile dpkg-scripts @{exec_path} {
|
||||||
@{lib}/ubuntu-advantage/postinst-migrations.sh ix,
|
@{lib}/ubuntu-advantage/postinst-migrations.sh ix,
|
||||||
|
|
||||||
@{bin}/dbus-send Cx -> bus,
|
@{bin}/dbus-send Cx -> bus,
|
||||||
|
@{bin}/kmod Cx -> kmod,
|
||||||
@{bin}/dpkg Px -> child-dpkg,
|
@{bin}/dpkg Px -> child-dpkg,
|
||||||
@{bin}/systemctl Cx -> systemctl,
|
@{bin}/systemctl Cx -> systemctl,
|
||||||
@{sbin}/invoke-rc.d Cx -> rc,
|
@{sbin}/invoke-rc.d Cx -> rc,
|
||||||
|
|
@ -52,9 +53,6 @@ profile dpkg-scripts @{exec_path} {
|
||||||
/usr/share/** Px,
|
/usr/share/** Px,
|
||||||
/etc/init.d/* Px,
|
/etc/init.d/* Px,
|
||||||
|
|
||||||
/var/lib/dpkg/info/*.@{dpkg_script_ext} ix, # dpkg-scripts-*
|
|
||||||
/var/lib/dpkg/tmp.ci/@{dpkg_script_ext} Px, # dpkg-script-tmp
|
|
||||||
|
|
||||||
# Maintainer's scripts can update a lot of files
|
# Maintainer's scripts can update a lot of files
|
||||||
/ r,
|
/ r,
|
||||||
/*/ r,
|
/*/ r,
|
||||||
|
|
@ -85,12 +83,20 @@ profile dpkg-scripts @{exec_path} {
|
||||||
include if exists <local/dpkg-scripts_bus>
|
include if exists <local/dpkg-scripts_bus>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
profile kmod {
|
||||||
|
include <abstractions/base>
|
||||||
|
include <abstractions/app/kmod>
|
||||||
|
|
||||||
|
include if exists <local/dpkg-scripts_kmod>
|
||||||
|
}
|
||||||
|
|
||||||
profile systemctl {
|
profile systemctl {
|
||||||
include <abstractions/base>
|
include <abstractions/base>
|
||||||
include <abstractions/app/systemctl>
|
include <abstractions/app/systemctl>
|
||||||
|
|
||||||
capability net_admin,
|
capability net_admin,
|
||||||
capability sys_ptrace,
|
capability sys_ptrace,
|
||||||
|
capability sys_resource,
|
||||||
|
|
||||||
@{run}/utmp rk,
|
@{run}/utmp rk,
|
||||||
|
|
||||||
|
|
@ -99,6 +105,7 @@ profile dpkg-scripts @{exec_path} {
|
||||||
|
|
||||||
profile rc {
|
profile rc {
|
||||||
include <abstractions/base>
|
include <abstractions/base>
|
||||||
|
include <abstractions/consoles>
|
||||||
include <abstractions/perl>
|
include <abstractions/perl>
|
||||||
|
|
||||||
@{sbin}/update-rc.d mr,
|
@{sbin}/update-rc.d mr,
|
||||||
|
|
@ -110,10 +117,10 @@ profile dpkg-scripts @{exec_path} {
|
||||||
|
|
||||||
/etc/ r,
|
/etc/ r,
|
||||||
/etc/init.d/* r,
|
/etc/init.d/* r,
|
||||||
/etc/rc?.d/ r,
|
/etc/rc@{c}.d/ r,
|
||||||
|
/etc/rc@{c}.d/* rw,
|
||||||
/etc/rc@{int}.d/ r,
|
/etc/rc@{int}.d/ r,
|
||||||
/etc/rc@{int}.d/* rw,
|
/etc/rc@{int}.d/* rw,
|
||||||
/etc/rc@{c}.d/* rw,
|
|
||||||
|
|
||||||
include if exists <local/dpkg-scripts_rc>
|
include if exists <local/dpkg-scripts_rc>
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,6 @@ dpkg-script-apparmor complain
|
||||||
dpkg-script-kmod complain
|
dpkg-script-kmod complain
|
||||||
dpkg-script-linux complain
|
dpkg-script-linux complain
|
||||||
dpkg-script-systemd complain
|
dpkg-script-systemd complain
|
||||||
dpkg-script-tmp complain
|
|
||||||
dpkg-scripts complain
|
dpkg-scripts complain
|
||||||
drkonqi complain
|
drkonqi complain
|
||||||
drkonqi-coredump-cleanup complain
|
drkonqi-coredump-cleanup complain
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue