mirror of
https://github.com/Dielee/volvo2mqtt.git
synced 2026-08-10 09:49:52 +02:00
64 lines
1.5 KiB
Plaintext
64 lines
1.5 KiB
Plaintext
#include <tunables/global>
|
|
|
|
profile volvo2mqtt flags=(attach_disconnected,mediate_deleted) {
|
|
#include <abstractions/base>
|
|
|
|
# Capabilities
|
|
file,
|
|
signal (send) set=(kill,term,int,hup,cont),
|
|
|
|
# S6-Overlay
|
|
/init ix,
|
|
/bin/** ix,
|
|
/usr/bin/** ix,
|
|
/run/{s6,s6-rc*,service}/** ix,
|
|
/package/** ix,
|
|
/command/** ix,
|
|
/etc/services.d/** rwix,
|
|
/etc/cont-init.d/** rwix,
|
|
/etc/cont-finish.d/** rwix,
|
|
/run/{,**} rwk,
|
|
/dev/tty rw,
|
|
|
|
# Bashio
|
|
/usr/lib/bashio/** ix,
|
|
/tmp/** rwk,
|
|
|
|
# Access to options.json and other files within your addon
|
|
/data/** rw,
|
|
|
|
# Start new profile for service
|
|
/usr/bin/myprogram cx -> myprogram,
|
|
|
|
profile myprogram flags=(attach_disconnected,mediate_deleted) {
|
|
#include <abstractions/base>
|
|
|
|
# Receive signals from S6-Overlay
|
|
signal (receive) peer=*_ADDON_SLUG,
|
|
|
|
# Access to options.json and other files within your addon
|
|
/data/** rw,
|
|
|
|
# Access to mapped volumes specified in config.json
|
|
/share/** rw,
|
|
|
|
# Access required for service functionality
|
|
/usr/bin/myprogram r,
|
|
/bin/bash rix,
|
|
/bin/echo ix,
|
|
/etc/passwd r,
|
|
/dev/tty rw,
|
|
|
|
# Allow outbound MQTT communication
|
|
network tcp,
|
|
network inet stream,
|
|
network inet dgram,
|
|
network inet6 stream,
|
|
network inet6 dgram,
|
|
|
|
# Add any additional MQTT-related rules if needed
|
|
# For example, if you're using the paho-mqtt library
|
|
/usr/bin/python3 cx -> paho.mqtt,
|
|
/usr/lib/python3.11/site-packages/paho/mqtt/** r,
|
|
}
|
|
} |