mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-05 11:39:24 +01:00
ceb43cb354
For reasons already outlined in commit:
010b0e27f9
("dbus: Remove 'at_console', add 'netdev' settings")
29 lines
792 B
Plaintext
29 lines
792 B
Plaintext
<!-- This configuration file specifies the required security policies
|
|
for Ethernet 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="net.connman.ead"/>
|
|
<allow send_destination="net.connman.ead"/>
|
|
<allow send_interface="net.connman.ead.Agent"/>
|
|
</policy>
|
|
|
|
<policy group="wheel">
|
|
<allow send_destination="net.connman.ead"/>
|
|
</policy>
|
|
|
|
<policy group="netdev">
|
|
<allow send_destination="net.connman.ead"/>
|
|
</policy>
|
|
|
|
<policy context="default">
|
|
<deny send_destination="net.connman.ead"/>
|
|
</policy>
|
|
|
|
</busconfig>
|