mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-09 17:31:03 +01:00
59 lines
1.1 KiB
Plaintext
59 lines
1.1 KiB
Plaintext
#include <tunables/global>
|
|
|
|
profile addon_updater flags=(attach_disconnected,mediate_deleted) {
|
|
#include <abstractions/base>
|
|
|
|
# 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,
|
|
}
|
|
}
|
|
|