blob: de79dd51e4ca55075c434f074deedf3a05813f87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!-- This configuration file specifies the required security policies
for oFono dundee (DUN) daemon to work. -->
<!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.ofono.dundee"/>
<allow send_destination="org.ofono.dundee"/>
</policy>
<policy at_console="true">
<allow send_destination="org.ofono.dundee"/>
</policy>
<policy context="default">
<deny send_destination="org.ofono.dundee"/>
</policy>
</busconfig>
|