summaryrefslogtreecommitdiff
path: root/test/data/valid-config-files/system.d/test.conf
blob: 10a798479064eb2789e1e20eb42f4953ea1e0c4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
  <!-- The following demonstrates how to punch holes in a default deny-all 
       policy so that a particular user can own a service, and other 
       connections can get messages from it -->

  <!-- Only root can own the FooService service, and 
       this user can only send the one kind of message -->
  <policy user="root">
    <allow own="org.foo.FooService"/>
    <allow send_interface="org.foo.FooBroadcastInterface"/>
  </policy>

  <!-- Allow any connection to receive the message, but 
       only if the message is sent by the owner of FooService -->
  <policy context="default">
    <allow receive_interface="org.foo.FooBroadcastInterface" receive_service="org.foo.FooService"/>
  </policy>
</busconfig>