From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] [PATCH] services: nfs: Require file-systems to be mounted before starting NFS shepherd service. Resent-From: Danny Milosavljevic Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 07 Sep 2020 16:48:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 43257@debbugs.gnu.org Cc: Danny Milosavljevic X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.159949727721846 (code B ref -1); Mon, 07 Sep 2020 16:48:01 +0000 Received: (at submit) by debbugs.gnu.org; 7 Sep 2020 16:47:57 +0000 Received: from localhost ([127.0.0.1]:50633 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kFKJA-0005gH-Pb for submit@debbugs.gnu.org; Mon, 07 Sep 2020 12:47:57 -0400 Received: from lists.gnu.org ([209.51.188.17]:56828) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kFKJ9-0005gA-DG for submit@debbugs.gnu.org; Mon, 07 Sep 2020 12:47:55 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:51082) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kFKJ9-0000fT-5W for guix-patches@gnu.org; Mon, 07 Sep 2020 12:47:55 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:42934) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kFKJ7-000151-1S for guix-patches@gnu.org; Mon, 07 Sep 2020 12:47:54 -0400 Received: from dayas.lan (80-110-126-103.cgn.dynamic.surfer.at [80.110.126.103]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 959443362EEF; Mon, 7 Sep 2020 18:47:48 +0200 (CEST) From: Danny Milosavljevic Date: Mon, 7 Sep 2020 18:47:45 +0200 Message-Id: <20200907164745.15932-1-dannym@scratchpost.org> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Tags: patch Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.145.193; envelope-from=dannym@scratchpost.org; helo=dd26836.kasserver.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/09/07 12:47:49 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) 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: -3.3 (---) * gnu/services/nfs.scm (nfs-shepherd-services): Require file-systems to be mounted before starting NFS shepherd service. --- gnu/services/nfs.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/services/nfs.scm b/gnu/services/nfs.scm index 859097e788..24f746485b 100644 --- a/gnu/services/nfs.scm +++ b/gnu/services/nfs.scm @@ -292,7 +292,7 @@ (shepherd-service (documentation "Run the NFS statd daemon.") (provision '(rpc.statd)) - (requirement '(/proc/fs/nfsd rpcbind-daemon)) + (requirement '(/proc/fs/nfsd rpcbind-daemon file-systems)) (start #~(make-forkexec-constructor (list #$(file-append nfs-utils "/sbin/rpc.statd") @@ -311,7 +311,7 @@ (shepherd-service (documentation "Run the NFS mountd daemon.") (provision '(rpc.mountd)) - (requirement '(/proc/fs/nfsd rpc.statd)) + (requirement '(/proc/fs/nfsd rpc.statd file-systems)) (start #~(make-forkexec-constructor (list #$(file-append nfs-utils "/sbin/rpc.mountd") @@ -326,7 +326,7 @@ (shepherd-service (documentation "Run the NFS daemon.") (provision '(rpc.nfsd)) - (requirement '(/proc/fs/nfsd rpc.statd networking)) + (requirement '(/proc/fs/nfsd rpc.statd networking file-systems)) (start #~(lambda _ (zero? (apply system* #$(file-append nfs-utils "/sbin/rpc.nfsd") @@ -352,7 +352,7 @@ (shepherd-service (documentation "Run the NFS mountd daemon and refresh exports.") (provision '(nfs)) - (requirement '(/proc/fs/nfsd rpc.nfsd rpc.mountd rpc.statd rpcbind-daemon)) + (requirement '(/proc/fs/nfsd rpc.nfsd rpc.mountd rpc.statd rpcbind-daemon file-systems)) (start #~(lambda _ (let ((rpcdebug #$(file-append nfs-utils "/sbin/rpcdebug"))) From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] [PATCH] services: nfs: Require file-systems to be mounted before starting NFS shepherd service. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 09 Sep 2020 08:28:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Danny Milosavljevic Cc: 43257@debbugs.gnu.org Received: via spool by 43257-submit@debbugs.gnu.org id=B43257.159964006629304 (code B ref 43257); Wed, 09 Sep 2020 08:28:02 +0000 Received: (at 43257) by debbugs.gnu.org; 9 Sep 2020 08:27:46 +0000 Received: from localhost ([127.0.0.1]:57115 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kFvSD-0007ca-TW for submit@debbugs.gnu.org; Wed, 09 Sep 2020 04:27:46 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54616) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kFvSA-0007cM-Sf for 43257@debbugs.gnu.org; Wed, 09 Sep 2020 04:27:45 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:57895) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kFvS5-0005Mj-6i; Wed, 09 Sep 2020 04:27:37 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=54572 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kFvS4-0000b6-LA; Wed, 09 Sep 2020 04:27:36 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20200907164745.15932-1-dannym@scratchpost.org> Date: Wed, 09 Sep 2020 10:27:30 +0200 In-Reply-To: <20200907164745.15932-1-dannym@scratchpost.org> (Danny Milosavljevic's message of "Mon, 7 Sep 2020 18:47:45 +0200") Message-ID: <87imcnmk25.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) 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: -3.3 (---) Hey! Danny Milosavljevic skribis: > * gnu/services/nfs.scm (nfs-shepherd-services): Require file-systems to be > mounted before starting NFS shepherd service. [...] > +++ b/gnu/services/nfs.scm > @@ -292,7 +292,7 @@ > (shepherd-service > (documentation "Run the NFS statd daemon.") > (provision '(rpc.statd)) > - (requirement '(/proc/fs/nfsd rpcbind-daemon)) > + (requirement '(/proc/fs/nfsd rpcbind-daemon file-systems)) Why do we need all of =E2=80=98file-systems=E2=80=99 rather than just the s= tate file systems? Curiously, Ludo=E2=80=99. From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] [PATCH] services: nfs: Require file-systems to be mounted before starting NFS shepherd service. Resent-From: Danny Milosavljevic Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 09 Sep 2020 10:14:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 43257@debbugs.gnu.org Received: via spool by 43257-submit@debbugs.gnu.org id=B43257.159964641423948 (code B ref 43257); Wed, 09 Sep 2020 10:14:01 +0000 Received: (at 43257) by debbugs.gnu.org; 9 Sep 2020 10:13:34 +0000 Received: from localhost ([127.0.0.1]:57279 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kFx6c-0006EC-Jx for submit@debbugs.gnu.org; Wed, 09 Sep 2020 06:13:34 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:43224) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kFx6a-0006E3-L1 for 43257@debbugs.gnu.org; Wed, 09 Sep 2020 06:13:33 -0400 Received: from localhost (80-110-126-103.cgn.dynamic.surfer.at [80.110.126.103]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 004AF3363616; Wed, 9 Sep 2020 12:13:30 +0200 (CEST) Date: Wed, 9 Sep 2020 12:13:22 +0200 From: Danny Milosavljevic Message-ID: <20200909121313.321a18d5@scratchpost.org> In-Reply-To: <87imcnmk25.fsf@gnu.org> References: <20200907164745.15932-1-dannym@scratchpost.org> <87imcnmk25.fsf@gnu.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/7alOE_DuBqPPF__gyrcDTFD"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: -0.7 (/) 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: -1.7 (-) --Sig_/7alOE_DuBqPPF__gyrcDTFD Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Ludo, On Wed, 09 Sep 2020 10:27:30 +0200 Ludovic Court=C3=A8s wrote: > Why do we need all of =E2=80=98file-systems=E2=80=99 rather than just the= state file > systems? It really depends on what one uses it for, but for me it's this use case: * I have an extra hard drive that contains things I want to serve via NFS (it has nothing to do with the root file system). * The extra hard drive has to be mounted when NFS service starts up, otherwise exportfs errors out: If I don't require "file-systems", even if that drive is listed in the operating-system's file-systems list, it won't be mounted in time. I ran into this problem when merging Stefan's=20 new "nfs-root-fs" system test into gnu/tests/nfs.scm . Does this make sense or is it the wrong solution? --Sig_/7alOE_DuBqPPF__gyrcDTFD Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl9YqsIACgkQ5xo1VCww uqUHCggAhKmzN5oBbY3176t57kRoQrdCKX3e0g/8szUNbpjn08HfkVmlwwdEwvws uj22uyuyuxEH6QfXH9swwVLSEUXEreuCWEK2WGzFoGXgI5bOHIBDso3gbgMCRZXr meWyNTXwo1HCORHXhnvFZrwxMTA/lxZoK5+9AnImzJ2Q2ECd8eQoN5xwg9+H0i1G OzAzLcffTVdw2VLeEiQHPZDUc/vYa8em1uRTrxHdAkAGZkQOx6Gx6XgBlcI6A/3l TOkwOJ8VyLOGBnryx35wywyM3iJGY2Z8ZIQ13i57PYG4g0hHcrvxBEuX7mI0BSen OfZZifBEPOZzvc0o8CrohYaFOY2+Yg== =v5fM -----END PGP SIGNATURE----- --Sig_/7alOE_DuBqPPF__gyrcDTFD-- From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] [PATCH] services: nfs: Require file-systems to be mounted before starting NFS shepherd service. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 10 Sep 2020 07:44:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Danny Milosavljevic Cc: 43257@debbugs.gnu.org Received: via spool by 43257-submit@debbugs.gnu.org id=B43257.159972379413818 (code B ref 43257); Thu, 10 Sep 2020 07:44:02 +0000 Received: (at 43257) by debbugs.gnu.org; 10 Sep 2020 07:43:14 +0000 Received: from localhost ([127.0.0.1]:35860 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGHEg-0003ao-7s for submit@debbugs.gnu.org; Thu, 10 Sep 2020 03:43:14 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58660) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGHEe-0003aY-Am for 43257@debbugs.gnu.org; Thu, 10 Sep 2020 03:43:12 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:52329) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kGHEY-0006t3-Jw; Thu, 10 Sep 2020 03:43:06 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=40128 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kGHEY-0006il-3V; Thu, 10 Sep 2020 03:43:06 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20200907164745.15932-1-dannym@scratchpost.org> <87imcnmk25.fsf@gnu.org> <20200909121313.321a18d5@scratchpost.org> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 25 Fructidor an 228 de la =?UTF-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 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-pc-linux-gnu Date: Thu, 10 Sep 2020 09:42:58 +0200 In-Reply-To: <20200909121313.321a18d5@scratchpost.org> (Danny Milosavljevic's message of "Wed, 9 Sep 2020 12:13:22 +0200") Message-ID: <87wo12jcvx.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) 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: -3.3 (---) Hi Danny, Danny Milosavljevic skribis: > On Wed, 09 Sep 2020 10:27:30 +0200 > Ludovic Court=C3=A8s wrote: > >> Why do we need all of =E2=80=98file-systems=E2=80=99 rather than just th= e state file >> systems? > > It really depends on what one uses it for, but for me it's this use case: > > * I have an extra hard drive that contains things I want to serve via > NFS (it has nothing to do with the root file system). > * The extra hard drive has to be mounted when NFS service starts up, > otherwise exportfs errors out: > If I don't require "file-systems", even if that drive is listed in the > operating-system's file-systems list, it won't be mounted in time. Oh, I see. > I ran into this problem when merging Stefan's=20 > new "nfs-root-fs" system test into gnu/tests/nfs.scm . > > Does this make sense or is it the wrong solution? I just realized that these services should just all depend on =E2=80=98user-processes=E2=80=99 (which depends on =E2=80=98file-systems=E2= =80=99). So you should probably just do that. You can double-check with =E2=80=98guix system shepherd-graph=E2=80=99 that= the dependency graph looks good. Thanks, Ludo=E2=80=99. From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] [PATCH] services: nfs: Require file-systems to be mounted before starting NFS shepherd service. Resent-From: Danny Milosavljevic Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 10 Sep 2020 13:21:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 43257@debbugs.gnu.org Received: via spool by 43257-submit@debbugs.gnu.org id=B43257.159974404825881 (code B ref 43257); Thu, 10 Sep 2020 13:21:01 +0000 Received: (at 43257) by debbugs.gnu.org; 10 Sep 2020 13:20:48 +0000 Received: from localhost ([127.0.0.1]:37670 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGMVM-0006jN-CN for submit@debbugs.gnu.org; Thu, 10 Sep 2020 09:20:48 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:42906) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGMVL-0006jD-AL for 43257@debbugs.gnu.org; Thu, 10 Sep 2020 09:20:47 -0400 Received: from localhost (80-110-126-103.cgn.dynamic.surfer.at [80.110.126.103]) by dd26836.kasserver.com (Postfix) with ESMTPSA id F3E4B33606BF; Thu, 10 Sep 2020 15:20:45 +0200 (CEST) Date: Thu, 10 Sep 2020 15:20:42 +0200 From: Danny Milosavljevic Message-ID: <20200910152042.4b33a84f@scratchpost.org> In-Reply-To: <87wo12jcvx.fsf@gnu.org> References: <20200907164745.15932-1-dannym@scratchpost.org> <87imcnmk25.fsf@gnu.org> <20200909121313.321a18d5@scratchpost.org> <87wo12jcvx.fsf@gnu.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/b.gBxQFRLhb.+_HQdA8VGih"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: -0.7 (/) 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: -1.7 (-) --Sig_/b.gBxQFRLhb.+_HQdA8VGih Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Ludo, On Thu, 10 Sep 2020 09:42:58 +0200 Ludovic Court=C3=A8s wrote: > I just realized that these services should just all depend on > =E2=80=98user-processes=E2=80=99 (which depends on =E2=80=98file-systems= =E2=80=99). So you should > probably just do that. Okay. Thanks. > You can double-check with =E2=80=98guix system shepherd-graph=E2=80=99 th= at the > dependency graph looks good. $ ./pre-inst-env guix system shepherd-graph -e '(@@ (gnu tests nfs) %nfs-os= )' gnu/tests/nfs.scm:162:4: error: missing root file system I can probably work around it somehow--but just logging this not-nice user interface here. --Sig_/b.gBxQFRLhb.+_HQdA8VGih Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl9aKCoACgkQ5xo1VCww uqUagAf6AxGg/QJJaKmg1DsrZNCpcYJvO4aD3j7sKRLcbWlJjJCPBHSBmqdgy4Ff Vp25kOECf8MrtYc+O7Z+Ln/aJ6GmOtYOouFfRssTDkHSTyYmhnxu/CoJMDuvGeAT v6111rw+DW+++uu9gHapXZ+VHeJZmg9grKtakx+rycKHUNHB+4IhFyWmTfZQfgSL jVKJQQXxnRNRDWhCjEo0dtOQFbaVflCbHlI6/35WncjKNVRJ7amwkm4dqlDEfUs3 162WxXflWbEqp2rEhdTETx6FB5WCS4ytNQ0UqWjyWxrdzGXsFCvOY0M/Zz/dL5ju uGQm6xHFjMzMR7RvCri2qMv6Mnp2bg== =OZHl -----END PGP SIGNATURE----- --Sig_/b.gBxQFRLhb.+_HQdA8VGih-- From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] [PATCH] services: nfs: Require file-systems to be mounted before starting NFS shepherd service. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 11 Sep 2020 07:03:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Danny Milosavljevic Cc: 43257@debbugs.gnu.org Received: via spool by 43257-submit@debbugs.gnu.org id=B43257.159980774432226 (code B ref 43257); Fri, 11 Sep 2020 07:03:02 +0000 Received: (at 43257) by debbugs.gnu.org; 11 Sep 2020 07:02:24 +0000 Received: from localhost ([127.0.0.1]:42169 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGd4i-0008Ni-G7 for submit@debbugs.gnu.org; Fri, 11 Sep 2020 03:02:24 -0400 Received: from eggs.gnu.org ([209.51.188.92]:36868) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGd4h-0008NU-C9 for 43257@debbugs.gnu.org; Fri, 11 Sep 2020 03:02:23 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:48099) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kGd4b-0006R3-P1; Fri, 11 Sep 2020 03:02:17 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=36480 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kGd4b-0005ld-BY; Fri, 11 Sep 2020 03:02:17 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20200907164745.15932-1-dannym@scratchpost.org> <87imcnmk25.fsf@gnu.org> <20200909121313.321a18d5@scratchpost.org> <87wo12jcvx.fsf@gnu.org> <20200910152042.4b33a84f@scratchpost.org> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 26 Fructidor an 228 de la =?UTF-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 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-pc-linux-gnu Date: Fri, 11 Sep 2020 09:02:09 +0200 In-Reply-To: <20200910152042.4b33a84f@scratchpost.org> (Danny Milosavljevic's message of "Thu, 10 Sep 2020 15:20:42 +0200") Message-ID: <87h7s4vlse.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) 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: -3.3 (---) Howdy, Danny Milosavljevic skribis: > On Thu, 10 Sep 2020 09:42:58 +0200 > Ludovic Court=C3=A8s wrote: > >> I just realized that these services should just all depend on >> =E2=80=98user-processes=E2=80=99 (which depends on =E2=80=98file-systems= =E2=80=99). So you should >> probably just do that. > > Okay. Thanks. > >> You can double-check with =E2=80=98guix system shepherd-graph=E2=80=99 t= hat the >> dependency graph looks good. > > $ ./pre-inst-env guix system shepherd-graph -e '(@@ (gnu tests nfs) %nfs-= os)' > gnu/tests/nfs.scm:162:4: error: missing root file system > > I can probably work around it somehow--but just logging this not-nice user > interface here. Any suggestions? :-) The only think I could think of is transparently adding a dummy root file system for the purposes of =E2=80=98shepherd-graph=E2=80=99, but it=E2= =80=99s not necessarily a good idea either. Thanks, Ludo=E2=80=99. From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] [PATCH] services: nfs: Require file-systems to be mounted before starting NFS shepherd service. Resent-From: Danny Milosavljevic Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 11 Sep 2020 08:24:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 43257@debbugs.gnu.org Received: via spool by 43257-submit@debbugs.gnu.org id=B43257.15998126317366 (code B ref 43257); Fri, 11 Sep 2020 08:24:01 +0000 Received: (at 43257) by debbugs.gnu.org; 11 Sep 2020 08:23:51 +0000 Received: from localhost ([127.0.0.1]:42238 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGeLW-0001uk-Rb for submit@debbugs.gnu.org; Fri, 11 Sep 2020 04:23:51 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:55924) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGeLU-0001ub-Js for 43257@debbugs.gnu.org; Fri, 11 Sep 2020 04:23:49 -0400 Received: from localhost (80-110-126-103.cgn.dynamic.surfer.at [80.110.126.103]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 4BD2B33687C7; Fri, 11 Sep 2020 10:23:47 +0200 (CEST) Date: Fri, 11 Sep 2020 10:23:16 +0200 From: Danny Milosavljevic Message-ID: <20200911102316.50a22465@scratchpost.org> In-Reply-To: <87h7s4vlse.fsf@gnu.org> References: <20200907164745.15932-1-dannym@scratchpost.org> <87imcnmk25.fsf@gnu.org> <20200909121313.321a18d5@scratchpost.org> <87wo12jcvx.fsf@gnu.org> <20200910152042.4b33a84f@scratchpost.org> <87h7s4vlse.fsf@gnu.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/RQVbOisJphzzjlouk7Sbn4Y"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: -0.7 (/) 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: -1.7 (-) --Sig_/RQVbOisJphzzjlouk7Sbn4Y Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Ludo, On Fri, 11 Sep 2020 09:02:09 +0200 Ludovic Court=C3=A8s wrote: > Any suggestions? :-) >=20 > The only think I could think of is transparently adding a dummy root > file system for the purposes of =E2=80=98shepherd-graph=E2=80=99, but it= =E2=80=99s not > necessarily a good idea either. It depends on whether we want to have developer tools--but if we do, it wou= ld be nice to be more forgiving on some errors (for example have a "developer" switch that would add missing fields if they are harmless and don't change the result. Or maybe just have a procedure available that would do that which the dev could add a call to with "-e"). That said, not sure that it's a good idea. I'm just always logging weird things so we actually can see them. It's not necessarily something we can (or should) fix :-) However, this %nfs-os is used almost unchanged for marionette-operating-sys= tem. So I got this idea: $ ./pre-inst-env guix system shepherd-graph -e '((@ (gnu tests) marionette-= operating-system) (@@ (gnu tests nfs) %nfs-os)))' gnu/tests.scm:161:2: error: missing root file system ... doesn't work either. Well now that's weird. That operating-system is eventually passed to "virtual-machine". So that means we can't use shepherd-graph on VMs? --Sig_/RQVbOisJphzzjlouk7Sbn4Y Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl9bM/QACgkQ5xo1VCww uqXjGAf/dE++M4jEwGJJ6nRKDIrhgpGZHigfSMLyKsa/8rHZ5LQ5D54tFfwZNYrZ IbqAPmgPBFL4vcUY5M07GLhPhpxXnAUtejzFpAqwjqTwVvRzRwqAOrWcOmvovhk0 TXINK1A4crmca9YdjZYUBx8oxxeQ1YyTGqrF4W4CKgk2L4Ciq7bJJyeGrz1rvqQI dR5MqHVCurvnnk4oRGvzfZxoTR5zb33nkD0Yi5fbu0HBIIcdtY19yuwe4MCLMirA EgrKNCvng+K3qfdD6Dm/BnsSeCQTIXikeHmCRSaSxMyJOXS1VJWeaV/eC2zUIXnv QV8Br0LWlU+WT2X0UCLEjGKqqEXm4w== =dV62 -----END PGP SIGNATURE----- --Sig_/RQVbOisJphzzjlouk7Sbn4Y-- From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] [PATCH] services: nfs: Require file-systems to be mounted before starting NFS shepherd service. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 11 Sep 2020 14:48:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Danny Milosavljevic Cc: 43257@debbugs.gnu.org Received: via spool by 43257-submit@debbugs.gnu.org id=B43257.159983566124780 (code B ref 43257); Fri, 11 Sep 2020 14:48:01 +0000 Received: (at 43257) by debbugs.gnu.org; 11 Sep 2020 14:47:41 +0000 Received: from localhost ([127.0.0.1]:45093 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGkKz-0006RW-2j for submit@debbugs.gnu.org; Fri, 11 Sep 2020 10:47:41 -0400 Received: from eggs.gnu.org ([209.51.188.92]:56140) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGkKx-0006Np-0u for 43257@debbugs.gnu.org; Fri, 11 Sep 2020 10:47:39 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:40324) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kGkKp-00078r-IC; Fri, 11 Sep 2020 10:47:31 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=39310 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kGkKg-00040B-0R; Fri, 11 Sep 2020 10:47:30 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20200907164745.15932-1-dannym@scratchpost.org> <87imcnmk25.fsf@gnu.org> <20200909121313.321a18d5@scratchpost.org> <87wo12jcvx.fsf@gnu.org> <20200910152042.4b33a84f@scratchpost.org> <87h7s4vlse.fsf@gnu.org> <20200911102316.50a22465@scratchpost.org> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 26 Fructidor an 228 de la =?UTF-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 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-pc-linux-gnu Date: Fri, 11 Sep 2020 16:47:14 +0200 In-Reply-To: <20200911102316.50a22465@scratchpost.org> (Danny Milosavljevic's message of "Fri, 11 Sep 2020 10:23:16 +0200") Message-ID: <87pn6stlot.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) 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: -3.3 (---) Danny Milosavljevic skribis: > Hi Ludo, > > On Fri, 11 Sep 2020 09:02:09 +0200 > Ludovic Court=C3=A8s wrote: > >> Any suggestions? :-) >>=20 >> The only think I could think of is transparently adding a dummy root >> file system for the purposes of =E2=80=98shepherd-graph=E2=80=99, but it= =E2=80=99s not >> necessarily a good idea either. > > It depends on whether we want to have developer tools--but if we do, it w= ould > be nice to be more forgiving on some errors (for example have a "develope= r" > switch that would add missing fields if they are harmless and don't change > the result. Or maybe just have a procedure available that would do that > which the dev could add a call to with "-e"). > > That said, not sure that it's a good idea. > > I'm just always logging weird things so we actually can see them. > > It's not necessarily something we can (or should) fix :-) > > However, this %nfs-os is used almost unchanged for marionette-operating-s= ystem. > > So I got this idea: > > $ ./pre-inst-env guix system shepherd-graph -e '((@ (gnu tests) marionett= e-operating-system) (@@ (gnu tests nfs) %nfs-os)))' > gnu/tests.scm:161:2: error: missing root file system > > ... doesn't work either. Well now that's weird. > > That operating-system is eventually passed to "virtual-machine". > > So that means we can't use shepherd-graph on VMs? No: that just means that =E2=80=98virtualized-operating-system=E2=80=99 add= s a root file system transparently, which is why we can afford not providing one in OSes that are only meant to be used through =E2=80=98guix system vm=E2=80= =99. But =E2=80=98shepherd-graph=E2=80=99 doesn=E2=80=99t know about that: it ta= kes your OS as is and show you the info. Hope that makes sense! Ludo=E2=80=99. From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] [PATCH] services: nfs: Require file-systems to be mounted before starting NFS shepherd service. Resent-From: Danny Milosavljevic Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 11 Sep 2020 17:51:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 43257@debbugs.gnu.org Received: via spool by 43257-submit@debbugs.gnu.org id=B43257.159984661818628 (code B ref 43257); Fri, 11 Sep 2020 17:51:02 +0000 Received: (at 43257) by debbugs.gnu.org; 11 Sep 2020 17:50:18 +0000 Received: from localhost ([127.0.0.1]:45371 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGnBh-0004qN-JV for submit@debbugs.gnu.org; Fri, 11 Sep 2020 13:50:17 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:52750) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kGnBe-0004qC-05 for 43257@debbugs.gnu.org; Fri, 11 Sep 2020 13:50:16 -0400 Received: from localhost (80-110-126-103.cgn.dynamic.surfer.at [80.110.126.103]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 00D1B3368987; Fri, 11 Sep 2020 19:50:12 +0200 (CEST) Date: Fri, 11 Sep 2020 19:50:11 +0200 From: Danny Milosavljevic Message-ID: <20200911195011.49c32229@scratchpost.org> In-Reply-To: <87pn6stlot.fsf@gnu.org> References: <20200907164745.15932-1-dannym@scratchpost.org> <87imcnmk25.fsf@gnu.org> <20200909121313.321a18d5@scratchpost.org> <87wo12jcvx.fsf@gnu.org> <20200910152042.4b33a84f@scratchpost.org> <87h7s4vlse.fsf@gnu.org> <20200911102316.50a22465@scratchpost.org> <87pn6stlot.fsf@gnu.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/m+McSamOdyJNmb5KvM/KE+/"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: -0.7 (/) 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: -1.7 (-) --Sig_/m+McSamOdyJNmb5KvM/KE+/ Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Ludo, On Fri, 11 Sep 2020 16:47:14 +0200 Ludovic Court=C3=A8s wrote: > No: that just means that =E2=80=98virtualized-operating-system=E2=80=99 a= dds a root file > system transparently, which is why we can afford not providing one in > OSes that are only meant to be used through =E2=80=98guix system vm=E2=80= =99. >=20 > But =E2=80=98shepherd-graph=E2=80=99 doesn=E2=80=99t know about that: it = takes your OS as is and > show you the info. That makes sense. So that means a user/developer can't use shepherd-graph on VMs :P That's a very bad user interface. Especially since if you are using shepherd-graph chances are you already are diagnosing a problem and don't want to have to diagnose more problems first in order to solve that one. Personally I'd make it emit a warning and add a rootfs if it's harmless in order to have this usecase (using shepherd-graph on VMs) be supported. If we want that. But it's fine for now--I just wanted to make sure to point out the pain poi= nts. --Sig_/m+McSamOdyJNmb5KvM/KE+/ Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl9buNMACgkQ5xo1VCww uqWXDwgAmq6Jcfn07xwxMSkyWqAyr3BmW8DxdCtRyhgjD1T1wAvQtGQ20EuhL7XD W0YYPXoCk3FjXu7FTWu+0kcvQQg55niiWIBo8d8WFKH4hV3Xv04T16J1Z6YjRHRF nQ3ILfB4YFv0a0/+yOyqo5n1STUKXdPSMrQc2LRKmPm6Z6MzdjEdKRZtoFnc5GgT La6iwaUduGchbsxc6di+6SDwCg4hk0icfmS5wvoneniTt4++NnRPjWs3LHTzlOCO s0+XXPKCdFLqzy1KUeY4otx7wIgpiPjJ4qnOiWN16e/F11XAxZPReyzlGq3OFwXC ReMWwgkfiMRZbS43pxV6/0zrYBYnSA== =ragx -----END PGP SIGNATURE----- --Sig_/m+McSamOdyJNmb5KvM/KE+/-- From unknown Fri Jun 13 11:17:50 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#43257] Spooky problem in "nfs-root-os" system test Resent-From: Danny Milosavljevic Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 13 Sep 2020 19:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43257 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 43257@debbugs.gnu.org Cc: guix-devel@gnu.org, Ludovic =?UTF-8?Q?Court=C3=A8s?= Received: via spool by 43257-submit@debbugs.gnu.org id=B43257.16000268026545 (code B ref 43257); Sun, 13 Sep 2020 19:54:01 +0000 Received: (at 43257) by debbugs.gnu.org; 13 Sep 2020 19:53:22 +0000 Received: from localhost ([127.0.0.1]:51805 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHY3u-0001hV-23 for submit@debbugs.gnu.org; Sun, 13 Sep 2020 15:53:22 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:59672) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHY3X-0001gi-0A for 43257@debbugs.gnu.org; Sun, 13 Sep 2020 15:53:21 -0400 Received: from localhost (80-110-126-103.cgn.dynamic.surfer.at [80.110.126.103]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 99EA533628D8; Sun, 13 Sep 2020 21:52:57 +0200 (CEST) Date: Sun, 13 Sep 2020 21:52:14 +0200 From: Danny Milosavljevic Message-ID: <20200913215214.7ff9b97f@scratchpost.org> In-Reply-To: <20200910152042.4b33a84f@scratchpost.org> References: <20200907164745.15932-1-dannym@scratchpost.org> <87imcnmk25.fsf@gnu.org> <20200909121313.321a18d5@scratchpost.org> <87wo12jcvx.fsf@gnu.org> <20200910152042.4b33a84f@scratchpost.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/cDiT.ZdzEmJ=AFoTHpLtYuk"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: -0.7 (/) 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: -1.7 (-) --Sig_/cDiT.ZdzEmJ=AFoTHpLtYuk Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi, I've got some spooky problem in the NFS root test (or in the VM setup by Gu= ix, really). It seems to hang the system test in a part I cannot change (so it's not ins= ide the test script). In order to reproduce, start with guix master commit 898fbb60b2354e82e5b7f259b44dbfed112a83aa--or any recent Guix master commit. So far it's still "fine"-ish: $ make TESTS=3D"nfs-root-fs" check-system [... works fine and eventually fails because port 20001 is waited for but is never opened by the server--so far so good] Now edit gnu/tests/nfs.scm to change ;(rpcmountd-port 20001) to (rpcmountd-port 20001) in order to fix the problem above--or so I thought. $ make TESTS=3D"nfs-root-fs" check-system [... hangs in first VM--without even trying to start up the NFS server VM (= as far as I can tell)] What is going on? Also, how to debug this? (same happens when enabling (rpcstatd-port 20002) only. Also, doesn't rpcstatd have TWO ports--one to broadcast and one to listen? How does one set up both using the operating-system configuration?) --Sig_/cDiT.ZdzEmJ=AFoTHpLtYuk Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAl9eeG4ACgkQ5xo1VCww uqX8ywgAkAPX6aAJNTjEdco0xrH16yucp92NwomwJ78Tdk+py2YYMjxoOlz3NgsZ dznH+M2kJE/ObMpSq+Q0LzfpTpXqxuhIhDPq+nWVaok/RoVXYFEFo9NYqq4yt6qk U+fUtQYYAiuwiih34Olrz8ncIi+YwX0UEoxKXl/5ai+nHf3DWLnjKSKT3MMiS1b3 eUGBcpgdtKG+7MPPn/8GMMkjuCRQZW6v1owofH8SUjISxBMEHmNvUnKP6rAQ39Mb x9EAhJNcNJexMzb4m802pO4F6gfjvmJxJmdbN4wvQjnm6jkBW7hx+o0W2NiMdxqj KkS4QSHOiFustW1RzkuiIOhQRJo5iA== =qTlP -----END PGP SIGNATURE----- --Sig_/cDiT.ZdzEmJ=AFoTHpLtYuk--