emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#39551: closed (Cannot declare an NFS mount using the <file-system> r


From: GNU bug Tracking System
Subject: bug#39551: closed (Cannot declare an NFS mount using the <file-system> record)
Date: Tue, 18 Feb 2020 17:29:02 +0000

Your message dated Tue, 18 Feb 2020 12:28:33 -0500
with message-id <address@hidden>
and subject line Re: bug#39551: Cannot declare an NFS mount using the 
<file-system> record
has caused the debbugs.gnu.org bug report #39551,
regarding Cannot declare an NFS mount using the <file-system> record
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
39551: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39551
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Cannot declare an NFS mount using the <file-system> record Date: Mon, 10 Feb 2020 14:41:50 -0500
When I try adding an NFS mount point to my Guix System, like:


--8<---------------cut here---------------start------------->8---
[...]
(file-system
  (device "192.168.1.10:/mnt/scratch/")
  (mount-point "/mnt/scratch/")
  (type "nfs")
  (options "rw,async,soft,noexec"))
[...]
--8<---------------cut here---------------end--------------->8---

Reconfiguring fails with the message:

error: device '192.168.1.10' not found: No such file or directory
hint: If '192.168.1.10' is a file system label, write
`(file-system-label "192.168.1.10")' in your `device' field.

So it doesn't appear to be possible to declare an NFS mount currently,
despite commit 0c85db79f7a8abc3bcdbf8931d959fe94306a5a1 that'd suggest
it should be possible.

Maxim



--- End Message ---
--- Begin Message --- Subject: Re: bug#39551: Cannot declare an NFS mount using the <file-system> record Date: Tue, 18 Feb 2020 12:28:33 -0500 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Giovanni Biscuolo <address@hidden> writes:

> Hello,
>
> Maxim Cournoyer <address@hidden> writes:
>
>> The attached patch fixes this issue
>
> [...]
>
>> diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
>> index b0386a1392..26a1599a93 100644
>> --- a/guix/scripts/system.scm
>> +++ b/guix/scripts/system.scm
>> @@ -566,6 +566,8 @@ any, are available.  Raise an error if they're not."
>>                (and (file-system-mount? fs)
>>                     (not (member (file-system-type fs)
>>                                  %pseudo-file-system-types))
>> +                   ;; Fixes issue #39551 (see: https://bugs.gnu.org/39551).
>> +                   (not (string-prefix? "nfs" (file-system-type fs)))
>>                     (not (memq 'bind-mount (file-system-flags fs)))))
>>              file-systems))
>
> Please is it possible to also add nfs4 to this fix?
>
> Thanks! Gio'

Done with commit adbdf188c28c503a9c875b793bc88548d3cd702f.  Please not
that booting with NFS still seems to be problematic, at least in my
experience.  I had to use set mount? to #f and check? to #f as well in
the <file-system> record.  I'll try to address these issues separately.

Maxim


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]