21 lines
936 B
Text
21 lines
936 B
Text
|
|
<?xml version="1.0" encoding="UTF-8"?> <!--*-nxml-*-->
|
||
|
|
<!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: GPL-3.0-only
|
||
|
|
SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
||
|
|
|
||
|
|
fingerprintd owns fprintd's bus name so pam_fprintd, the Plasma KCM and
|
||
|
|
fprintd-enroll work unmodified. Same shape as fprintd's own policy: root
|
||
|
|
owns the name, anyone may call it, and the daemon enforces who may act on
|
||
|
|
whose prints.
|
||
|
|
Install: /usr/share/dbus-1/system.d/net.reactivated.Fprint.conf -->
|
||
|
|
<busconfig>
|
||
|
|
<policy user="root">
|
||
|
|
<allow own="net.reactivated.Fprint"/>
|
||
|
|
<allow send_destination="net.reactivated.Fprint"/>
|
||
|
|
</policy>
|
||
|
|
<policy context="default">
|
||
|
|
<allow send_destination="net.reactivated.Fprint"/>
|
||
|
|
<allow receive_sender="net.reactivated.Fprint"/>
|
||
|
|
</policy>
|
||
|
|
</busconfig>
|