mirror of https://github.com/subgraph/fw-daemon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
804 B
29 lines
804 B
9 years ago
|
<?xml version="1.0" encoding="UTF-8"?> <!-- -*- XML -*- -->
|
||
|
|
||
|
<!DOCTYPE busconfig PUBLIC
|
||
|
"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
|
||
|
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
|
||
|
<busconfig>
|
||
|
|
||
|
<!-- Only 'user' can own this service -->
|
||
|
<policy user="1000">
|
||
|
<allow own="com.subgraph.FirewallPrompt"/>
|
||
|
</policy>
|
||
|
|
||
|
<!-- Anyone can send messages to com.subgraph.FirewallPrompt -->
|
||
|
<policy context="default">
|
||
|
<allow send_destination="com.subgraph.FirewallPrompt"/>
|
||
|
</policy>
|
||
|
|
||
|
<!-- Only root can own this service -->
|
||
|
<policy user="0">
|
||
|
<allow own="com.subgraph.Firewall" />
|
||
|
</policy>
|
||
|
|
||
|
<!-- Anyone can send messages to com.subgraph.Firewall -->
|
||
|
<policy context="default">
|
||
|
<allow send_destination="com.subgraph.Firewall" />
|
||
|
</policy>
|
||
|
|
||
|
</busconfig>
|