From mboxrd@z Thu Jan 1 00:00:00 1970 From: William Subject: bug#27580: Elogin doesn't start properly Date: Wed, 5 Jul 2017 00:39:05 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47231) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dSY5w-0003Nm-1y for bug-guix@gnu.org; Tue, 04 Jul 2017 20:23:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dSY5u-0004sb-VC for bug-guix@gnu.org; Tue, 04 Jul 2017 20:23:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:50047) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dSY5u-0004sB-PU for bug-guix@gnu.org; Tue, 04 Jul 2017 20:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dSY5u-0003NY-GI for bug-guix@gnu.org; Tue, 04 Jul 2017 20:23:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40191) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dSXPR-000878-Rj for bug-guix@gnu.org; Tue, 04 Jul 2017 19:39:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dSXPQ-00005b-Lx for bug-guix@gnu.org; Tue, 04 Jul 2017 19:39:09 -0400 Received: from mail-pg0-x230.google.com ([2607:f8b0:400e:c05::230]:33034) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dSXPQ-0008V8-G1 for bug-guix@gnu.org; Tue, 04 Jul 2017 19:39:08 -0400 Received: by mail-pg0-x230.google.com with SMTP id k14so39667294pgr.0 for ; Tue, 04 Jul 2017 16:39:06 -0700 (PDT) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 27580@debbugs.gnu.org On my GuixSD VM (Guix release 0.13) elogind doesn't start at startup, despite (elogind-service) being used in config.scm. I am not using Xorg or a desktop manager like Slim. Elogind only starts when loginctl is executed as loginctl activates elogind via DBus, meaning that it doesn't record any logins before loginctl is run. I don't believe that this is intended; my Arch Linux install doesn't miss any logins. My config.scm: --8<---------------cut here---------------start------------->8--- (services (cons* ;; Networking (service wpa-supplicant-service-type) (service connman-service-type (connman-configuration)) (service tlp-service-type) (service thermald-service-type) (udisks-service) (polkit-service) (elogind-service) (dbus-service) %base-services)) --8<---------------cut here---------------end--------------->8--- Output (just started up vm): --8<---------------cut here---------------start------------->8--- gollum login: cavej Password: This is the GNU operating system, welcome! gollum% loginctl dbus[392]: [system] activating service name='org.freedesktop.login1' (using servicehelper) [/gnu/store/ninbsrgj12ik3zjwk0vbcbmhwfkfhj7h-logind.conf:5] Unknown lvalue 'InhibitDelayMaxSecs' in section 'Login' [/gnu/store/ninbsrgj12ik3zjwk0vbcbmhwfkfhj7h-logind.conf:15] Unknown lvalue 'HolfoffTimeoutSecs' in section 'Login' [/gnu/store/ninbsrgj12ik3zjwk0vbcbmhwfkfhj7h-logind.conf:17] Unknown lvalue 'IdleActionSeconds' in section 'Login' [/gnu/store/ninbsrgj12ik3zjwk0vbcbmhwfkfhj7h-logind.conf:19] Unknown lvalue 'RemoveIpc' in section 'Login' dbus[392]: [system] Successfully activated service 'org.freedesktop.login1' New seat seat0. Watching system buttons on /dev/input/event0 (Power Button) SESSION UID USER SEAT 0 sessions listed. gollum% exit Respawning term-tty1 Service term-tty1 has been restarted. This is the GNU system. Welcome. gollum login: cavej Password: New session c1 of user cavej. This is the GNU operating system, welcome! gollum% loginctl SESSION UID USER SEAT c1 30011 cavej seat0 1 sessions listed. --8<---------------cut here---------------end--------------->8---