mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-08-08 22:22:29 +02:00
- Add `capability sys_chroot` to all add-on AppArmor profiles (prophylactic fix; required by any service that uses privilege-separation chroot, e.g. sshd, Elasticsearch JVM, postgres) - Fix AppArmor profile name collisions where add-ons had copy-pasted a wrong profile name (inadyn_addon, db21ed7f_qbittorrent, radarr_addon, db21ed7f_scrutiny, addon_db21ed7f_emby_nas, addon_updater, chromium_addon, fireflyiii_addon, webtop_addon, joplin, gitea_addon) causing AppArmor to silently apply the wrong profile No version bumps — profiles apply on next add-on update. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V7P3Nbem7n9FqGTXrLMadP
60 lines
1.1 KiB
Plaintext
60 lines
1.1 KiB
Plaintext
#include <tunables/global>
|
|
|
|
profile sponsorblockcast_addon flags=(attach_disconnected,mediate_deleted) {
|
|
#include <abstractions/base>
|
|
capability sys_chroot,
|
|
|
|
# Capabilities
|
|
file,
|
|
signal,
|
|
network udp,
|
|
network tcp,
|
|
network dgram,
|
|
network stream,
|
|
network inet,
|
|
network inet6,
|
|
network netlink raw,
|
|
network unix dgram,
|
|
|
|
# S6-Overlay
|
|
/init ix,
|
|
/run/{s6,s6-rc*,service}/** ix,
|
|
/package/** ix,
|
|
/command/** ix,
|
|
/run/{,**} rwk,
|
|
/dev/tty rw,
|
|
/init rix,
|
|
/bin/** ix,
|
|
/usr/bin/** ix,
|
|
/etc/s6/** rix,
|
|
/run/s6/** rwix,
|
|
/etc/services.d/** rwix,
|
|
/etc/cont-init.d/** rwix,
|
|
/etc/cont-finish.d/** rwix,
|
|
/run/** rwk,
|
|
/dev/fuse mrwkl,
|
|
/dev/sda1 mrwkl,
|
|
/dev/sdb1 mrwkl,
|
|
/dev/nvme0 mrwkl,
|
|
/dev/nvme1 mrwkl,
|
|
/dev/mmcblk0p1 mrwkl,
|
|
|
|
# bashio
|
|
/usr/lib/bashio/** ix,
|
|
/tmp/** rw,
|
|
|
|
# Access to Options.json and other files within your addon
|
|
/data/** rw,
|
|
|
|
# Start new profile for service
|
|
/usr/bin/myprogram cx,
|
|
|
|
profile usr/bin/myprogram flags=(attach_disconnected,mediate_deleted) {
|
|
#include <abstractions/base>
|
|
|
|
# Receive signals from S6-Overlay
|
|
signal receive,
|
|
}
|
|
}
|
|
|