blob: f0b76e43abd88bfaded38ce9083f8c68e24b8cf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
<!-- ../system.conf have denied everything, so we just punch some holes -->
<policy user="root">
<allow own="org.chromium.bluetooth"/>
<allow own="org.chromium.bluetooth.Manager"/>
<allow send_destination="org.chromium.bluetooth"/>
<allow send_interface="org.freedesktop.DBus.ObjectManager"/>
<allow send_interface="org.freedesktop.DBus.Properties"/>
<allow send_destination="org.chromium.bluetooth.Manager"/>
<allow send_interface="org.chromium.bluetooth.Manager"/>
</policy>
<policy user="bluetooth">
<allow own="org.chromium.bluetooth"/>
<allow own="org.chromium.bluetooth.Manager"/>
<allow send_destination="org.chromium.bluetooth"/>
<allow send_interface="org.freedesktop.DBus.ObjectManager"/>
<allow send_interface="org.freedesktop.DBus.Properties"/>
<allow send_destination="org.chromium.bluetooth.Manager"/>
<allow send_interface="org.chromium.bluetooth.Manager"/>
</policy>
<policy user="chronos">
<allow send_destination="org.chromium.bluetooth"/>
</policy>
<policy context="default">
<deny send_destination="org.chromium.bluetooth"/>
<deny send_destination="org.chromium.bluetooth.Manager"/>
</policy>
</busconfig>
|