mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
None of the files are installed into /etc/. They will unconditionally override older versions of themselves. They are not likely to cause any configuration file prompts. Reviewed-by: Veiko Aasa <veiko17@disroot.org>
27 lines
651 B
XML
27 lines
651 B
XML
<?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">
|
|
|
|
<!--
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
Allow only root and plinth users to send any notifications to FreedomBox Service
|
|
or to own the FreedomBox Service.
|
|
|
|
-->
|
|
|
|
<busconfig>
|
|
|
|
<policy user="root">
|
|
<allow own="org.freedombox.Service"/>
|
|
<allow send_destination="org.freedombox.Service"/>
|
|
</policy>
|
|
|
|
<policy user="plinth">
|
|
<allow own="org.freedombox.Service"/>
|
|
<allow send_destination="org.freedombox.Service"/>
|
|
</policy>
|
|
|
|
</busconfig>
|