From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 21 19:17:28 2015 Received: (at submit) by debbugs.gnu.org; 21 Jul 2015 23:17:28 +0000 Received: from localhost ([127.0.0.1]:55784 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZHgmu-0008Qw-BC for submit@debbugs.gnu.org; Tue, 21 Jul 2015 19:17:28 -0400 Received: from eggs.gnu.org ([208.118.235.92]:60094) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZHgms-0008Qj-46 for submit@debbugs.gnu.org; Tue, 21 Jul 2015 19:17:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZHgml-00072g-SZ for submit@debbugs.gnu.org; Tue, 21 Jul 2015 19:17:20 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:55528) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZHgml-00072W-PQ for submit@debbugs.gnu.org; Tue, 21 Jul 2015 19:17:19 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45350) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZHgmk-0003Bx-AO for bug-guix@gnu.org; Tue, 21 Jul 2015 19:17:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZHgmf-000713-HL for bug-guix@gnu.org; Tue, 21 Jul 2015 19:17:18 -0400 Received: from mailservices.uwaterloo.ca ([129.97.128.141]:54922 helo=psyche.uwaterloo.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZHgmf-00070x-Cf for bug-guix@gnu.org; Tue, 21 Jul 2015 19:17:13 -0400 Received: from [10.13.0.184] ([69.58.102.156]) (authenticated bits=0) by psyche.uwaterloo.ca (8.14.4/8.14.4) with ESMTP id t6LNHAj7018764 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Tue, 21 Jul 2015 19:17:13 -0400 To: bug-guix@gnu.org From: Andy Patterson Subject: Home directory not created for new users X-Enigmail-Draft-Status: N1110 Message-ID: <55AED337.3040806@uwaterloo.ca> Date: Tue, 21 Jul 2015 19:18:15 -0400 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------030102080601040607030103" X-UUID: b5ad2f64-45b2-4aa1-81bd-4bfb84a24b66 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) This is a multi-part message in MIME format. --------------030102080601040607030103 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Following up on the thread from guix-devel: On 0.8.3-pre, after a clean install, users listed in the system configuration file do not have a home directory automatically created for them in some circumstances. This causes the user to be initially unable to login. Specifically, with a separately mounted home folder, the folder may not be created. I note that when un-mounting /home, the expected folder does appear. --------------030102080601040607030103 Content-Type: text/x-scheme; name="config.scm" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="config.scm" ;; This is an operating system configuration template ;; for a "desktop" setup with X11. (use-modules (gnu) (gnu system nss)) (use-service-modules desktop) (use-package-modules xfce ratpoison wicd avahi xorg certs) (operating-system (host-name "antelope") (timezone "Europe/Paris") (locale "en_US.UTF-8") ;; Assuming /dev/sdX is the target hard disk, and "root" is ;; the label of the target root file system. (bootloader (grub-configuration (device "/dev/sda"))) (file-systems (cons* (file-system (device "rootfs") (title 'label) (mount-point "/") (type "ext4")) (file-system (device "boot") (title 'label) (mount-point "/boot") (type "ext2")) (file-system (device "homefs") (title 'label) (mount-point "/home") (type "ext4")) %base-file-systems)) (users (cons (user-account (name "bob") (comment "Alice's brother") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/bob")) %base-user-accounts)) ;; Add Xfce and Ratpoison; that allows us to choose ;; sessions using either of these at the log-in screen. (packages (cons* xfce ratpoison ;desktop environments xterm wicd avahi ;useful tools nss-certs ;for HTTPS access %base-packages)) ;; Use the "desktop" services, which include the X11 ;; log-in service, networking with Wicd, and more. (services %desktop-services) ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss)) --------------030102080601040607030103-- From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 28 17:00:17 2015 Received: (at request) by debbugs.gnu.org; 28 Sep 2015 21:00:17 +0000 Received: from localhost ([127.0.0.1]:46973 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZgfWy-0000yw-LZ for submit@debbugs.gnu.org; Mon, 28 Sep 2015 17:00:16 -0400 Received: from eggs.gnu.org ([208.118.235.92]:59969) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZgfWw-0000yd-HD for request@debbugs.gnu.org; Mon, 28 Sep 2015 17:00:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZgfWv-00038q-Ma for request@debbugs.gnu.org; Mon, 28 Sep 2015 17:00:14 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, T_RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([208.118.235.10]:52541) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgfWv-00038l-JZ for request@debbugs.gnu.org; Mon, 28 Sep 2015 17:00:13 -0400 Received: from reverse-83.fdn.fr ([80.67.176.83]:35526 helo=pluto) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1ZgfWu-0004sZ-Ue for request@debbugs.gnu.org; Mon, 28 Sep 2015 17:00:13 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: request@debbugs.gnu.org Subject: retitle X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 7 =?utf-8?Q?Vend=C3=A9miaire?= an 224 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x3D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-unknown-linux-gnu Date: Mon, 28 Sep 2015 23:00:11 +0200 Message-ID: <87oagm5kf8.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 208.118.235.10 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: request X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) retitle 21108 Home directory not created when /home is a separate partition thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 29 09:22:39 2016 Received: (at control) by debbugs.gnu.org; 29 Feb 2016 14:22:39 +0000 Received: from localhost ([127.0.0.1]:52003 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaOid-0001OB-8J for submit@debbugs.gnu.org; Mon, 29 Feb 2016 09:22:39 -0500 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:46524) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaOib-0001Nr-NZ for control@debbugs.gnu.org; Mon, 29 Feb 2016 09:22:38 -0500 X-IronPort-AV: E=Sophos;i="5.22,520,1449529200"; d="scan'208";a="166344998" Received: from pluto.bordeaux.inria.fr (HELO pluto) ([193.50.110.57]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/AES128-GCM-SHA256; 29 Feb 2016 15:22:31 +0100 Date: Mon, 29 Feb 2016 15:22:31 +0100 Message-Id: <87bn6zh9zs.fsf@gnu.org> To: control@debbugs.gnu.org From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: control message for bug #21108 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.1 (----) severity 21108 important From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 02 18:31:43 2016 Received: (at control) by debbugs.gnu.org; 2 Aug 2016 22:31:43 +0000 Received: from localhost ([127.0.0.1]:53914 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bUiDv-0000Vd-4X for submit@debbugs.gnu.org; Tue, 02 Aug 2016 18:31:43 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52714) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bUiDu-0000Ql-BG for control@debbugs.gnu.org; Tue, 02 Aug 2016 18:31:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bUiDk-0000fa-8J for control@debbugs.gnu.org; Tue, 02 Aug 2016 18:31:37 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:38826) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bUiDk-0000ey-5W for control@debbugs.gnu.org; Tue, 02 Aug 2016 18:31:32 -0400 Received: from reverse-83.fdn.fr ([80.67.176.83]:56756 helo=pluto) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1bUiDi-0001Eq-Gh for control@debbugs.gnu.org; Tue, 02 Aug 2016 18:31:30 -0400 Date: Wed, 03 Aug 2016 00:31:28 +0200 Message-Id: <87mvku7qgv.fsf@gnu.org> To: control@debbugs.gnu.org From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: control message for bug #23220 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -6.3 (------) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -6.3 (------) merge 23220 21108 From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 01 06:39:55 2017 Received: (at 21108-done) by debbugs.gnu.org; 1 Feb 2017 11:39:55 +0000 Received: from localhost ([127.0.0.1]:52886 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cYtGV-0005Zb-9K for submit@debbugs.gnu.org; Wed, 01 Feb 2017 06:39:55 -0500 Received: from eggs.gnu.org ([208.118.235.92]:54600) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cYtGT-0005ZP-9Q for 21108-done@debbugs.gnu.org; Wed, 01 Feb 2017 06:39:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cYtGJ-0003LH-Gq for 21108-done@debbugs.gnu.org; Wed, 01 Feb 2017 06:39:48 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:35856) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cYtGJ-0003LD-D0; Wed, 01 Feb 2017 06:39:43 -0500 Received: from reverse-83.fdn.fr ([80.67.176.83]:50224 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cYtGI-00020o-Gs; Wed, 01 Feb 2017 06:39:42 -0500 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Andy Patterson , Leo Famulari Subject: Re: bug#21108: Home directory not created for new users References: <55AED337.3040806@uwaterloo.ca> Date: Wed, 01 Feb 2017 12:39:39 +0100 In-Reply-To: <55AED337.3040806@uwaterloo.ca> (Andy Patterson's message of "Tue, 21 Jul 2015 19:18:15 -0400") Message-ID: <87o9ymcf7o.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 21108-done Cc: 21108-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Hello, Andy Patterson skribis: > Following up on the thread from guix-devel: > > > On 0.8.3-pre, after a clean install, users listed in the system > configuration file do not have a home directory automatically created > for them in some circumstances. This causes the user to be initially > unable to login. Specifically, with a separately mounted home folder, > the folder may not be created. I note that when un-mounting /home, the > expected folder does appear. I=E2=80=99m happy to report that this is finally fixed, in commit ae763b5b0b7d5e7316a3d0efe991fe8ab2261031. >From now on, home directories of non-system users are created when the =E2=80=98file-systems=E2=80=99 Shepherd service is up, i.e., when all the f= ile systems have been mounted. Let me know if you spot anything wrong! Ludo=E2=80=99. From unknown Fri Sep 05 20:37:00 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 01 Mar 2017 12:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator