bug-guix
[Top][All Lists]
Advanced

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

bug#35175: Cannot reconfigure


From: Ludovic Courtès
Subject: bug#35175: Cannot reconfigure
Date: Mon, 08 Apr 2019 16:46:44 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)

Danny Milosavljevic <address@hidden> skribis:

> On Sat, 06 Apr 2019 20:44:45 +0000
> address@hidden wrote:
>
>> This is not a bug, but your config is wrong here:
>> 
>>   (file-systems
>>    (cons
>>     (file-system (device "my-root")
>>               (mount-point "/")
>>               (type "ext4")
>>               (title 'label))
>>     %base-file-systems))
>> 
>> Delete string  `(title 'label)` and leave like this:
>> 
>>   (file-systems
>>    (cons
>>     (file-system (device "my-root")
>>               (mount-point "/")
>>               (type "ext4"))
>>     %base-file-systems))
>
> ... why?
>
> I use (title 'label) for more than a year and it works fine.

As a side note, ‘title’ has been deprecated for a year or so.  You
should now write:

  (file-system
    (device (file-system-label "my-root"))
    (mount-point "/")
    (type "ext4"))

See <https://gnu.org/s/guix/manual/en/html_node/File-Systems.html>.

Ludo’.





reply via email to

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