mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-08-10 23: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
24 lines
455 B
Plaintext
24 lines
455 B
Plaintext
#include <tunables/global>
|
|
|
|
profile aurral flags=(attach_disconnected,mediate_deleted) {
|
|
#include <abstractions/base>
|
|
capability sys_chroot,
|
|
|
|
file,
|
|
signal (send) set=(kill,term,int,hup,cont),
|
|
|
|
/init ix,
|
|
/bin/** ix,
|
|
/usr/bin/** ix,
|
|
/usr/local/bin/** ix,
|
|
/run/{s6,s6-rc*,fix-attrs.d}/** ix,
|
|
|
|
/share/aurral/** rwk,
|
|
/media/** rk,
|
|
/app/** rwk,
|
|
/config/aurral/** rwk,
|
|
|
|
deny /proc/*/net/if_inet6 r,
|
|
deny /proc/*/net/ipv6_route r,
|
|
}
|