homeassistant: Add support for zigbee dongle

This commit is contained in:
Timo Makinen 2023-12-05 17:15:16 +00:00
parent 8c66c9a6a0
commit a4660f69cf
5 changed files with 19 additions and 1 deletions

View file

@ -1,11 +1,12 @@
module homeassistant-local 1.0;
module homeassistant-local 1.1;
require {
type container_t;
type system_dbusd_var_run_t;
type system_dbusd_t;
type bluetooth_t;
class dir read;
class sock_file write;
class unix_stream_socket connectto;
class dbus send_msg;
@ -18,4 +19,5 @@ allow bluetooth_t container_t:dbus send_msg;
allow container_t bluetooth_t:dbus send_msg;
allow container_t system_dbusd_t:dbus send_msg;
allow container_t system_dbusd_t:unix_stream_socket connectto;
allow container_t system_dbusd_var_run_t:dir read;
allow container_t system_dbusd_var_run_t:sock_file write;