/etc/dbus-1/system.d/Mountall.Server.conf is in mountall 2.36.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE busconfig PUBLIC
"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
<!-- Only the root user can own the Mountall name -->
<policy user="root">
<allow own="com.ubuntu.Mountall.Server" />
</policy>
<!-- Permit the root user to invoke all of the methods on Mountall-->
<policy user="root">
<allow send_destination="com.ubuntu.Mountall.Server"
send_interface="org.freedesktop.DBus.Properties" />
<allow send_destination="com.ubuntu.Mountall.Server"
send_interface="com.ubuntu.Mountall0_1.Server" />
</policy>
<!-- Allow any user to introspect Mountall's interfaces, to obtain the
values of properties (but not set them) and to invoke selected
methods on Mountall that are used to walk information. -->
<policy context="default">
<allow send_destination="com.ubuntu.Mountall.Server"
send_interface="org.freedesktop.DBus.Introspectable" />
<allow send_destination="com.ubuntu.Mountall.Server"
send_interface="org.freedesktop.DBus.Properties"
send_type="method_call" send_member="Get" />
<allow send_destination="com.ubuntu.Mountall.Server"
send_interface="org.freedesktop.DBus.Properties"
send_type="method_call" send_member="GetAll" />
</policy>
</busconfig>
|