summaryrefslogtreecommitdiffstats
path: root/test/data/valid-config-files/system.d/test.conf
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/valid-config-files/system.d/test.conf')
-rw-r--r--test/data/valid-config-files/system.d/test.conf20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/data/valid-config-files/system.d/test.conf b/test/data/valid-config-files/system.d/test.conf
new file mode 100644
index 00000000..a683679e
--- /dev/null
+++ b/test/data/valid-config-files/system.d/test.conf
@@ -0,0 +1,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 fooserviceuser can own the FooService service, and
+ this user can only send the one kind of message -->
+ <policy user="fooserviceuser">
+ <allow own="org.foo.FooService"/>
+ <allow send="org.foo.FooBroadcastMessage"/>
+ </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="org.foo.FooBroadcastMessage" receive_from="org.foo.FooService"/>
+ </policy>
+</busconfig>