Date: Wed, 25 Jan 2017 19:50:19 -0800 From: David Christensen <dpchrist@holgerdanske.com> To: freebsd-questions@freebsd.org Subject: FreeBSD, Xfce, D-Bus, Polkit, and suspend and hibernate errors Message-ID: <85ec14b3-2948-6ea4-3269-14ed1787fee4@holgerdanske.com>
next in thread | raw e-mail | index | archive | help
freebsd-questions: I have a computer with Intel DQ67SWR3 motherboard, Intel i7-2600S processor, 8 GB memory, 16 GB SSD, and: toor@freebsd:/root # freebsd-version 11.0-RELEASE-p7 toor@freebsd:/root # uname -a FreeBSD freebsd 11.0-RELEASE-p1 FreeBSD 11.0-RELEASE-p1 #0 r306420: Thu Sep 29 03:40:55 UTC 2016 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 toor@freebsd:/root # pkg info xorg | head -n 1 xorg-7.7_2 toor@freebsd:/root # pkg info xfce | head -n 1 xfce-4.12_1 toor@freebsd:/root # pkg info dbus | head -n 1 dbus-1.10.14 toor@freebsd:/root # pkg info polkit | head -n 1 polkit-0.113_2 When I log in at the console, run 'startx', and log out, I see the following error messages on the console: toor@freebsd:/root # dmesg -a | tail -n 4 | head -n 2 Jan 25 19:02:20 freebsd dbus[732]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.11" (uid=13250 pid=1005 comm="") interface="org.freedesktop.ConsoleKit.Manager" member="CanSuspend" error name="(unset)" requested_reply="0" destination=":1.4" (uid=0 pid=877 comm="") Jan 25 19:02:20 freebsd dbus[732]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.11" (uid=13250 pid=1005 comm="") interface="org.freedesktop.ConsoleKit.Manager" member="CanHibernate" error name="(unset)" requested_reply="0" destination=":1.4" (uid=0 pid=877 comm="") I do not want or need suspend or hibernate. STFW I guessed at a solution: toor@freebsd:/root # cat /usr/local/etc/polkit-1/rules.d/51-suspend.rules polkit.addRule(function (action, subject) { if (action.id == "org.freedesktop.consolekit.system.suspend" && subject.isInGroup("dpchrist")) { return polkit.Result.NO; } }); This just causes more error messages. How do configure Xfce and/or dbus to not use suspend and hibernate (and stop issuing error messages)? TIA, David
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?85ec14b3-2948-6ea4-3269-14ed1787fee4>