From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#35175: Cannot reconfigure Date: Mon, 08 Apr 2019 16:46:44 +0200 Message-ID: <878swkwo4r.fsf@gnu.org> References: <20190406153348.411df268@gmail.com> <20190408125414.2b023d08@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:59013) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hDVYD-0004wo-Od for bug-guix@gnu.org; Mon, 08 Apr 2019 10:47:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hDVY9-0006lm-RE for bug-guix@gnu.org; Mon, 08 Apr 2019 10:47:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:36550) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hDVY6-0006k9-Nc for bug-guix@gnu.org; Mon, 08 Apr 2019 10:47:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hDVY6-0003CN-He for bug-guix@gnu.org; Mon, 08 Apr 2019 10:47:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20190408125414.2b023d08@scratchpost.org> (Danny Milosavljevic's message of "Mon, 8 Apr 2019 12:54:14 +0200") 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: Danny Milosavljevic Cc: 35175@debbugs.gnu.org Danny Milosavljevic skribis: > On Sat, 06 Apr 2019 20:44:45 +0000 > znavko@disroot.org wrote: > >> This is not a bug, but your config is wrong here: >>=20 >> (file-systems >> (cons >> (file-system (device "my-root") >> (mount-point "/") >> (type "ext4") >> (title 'label)) >> %base-file-systems)) >>=20 >> Delete string `(title 'label)` and leave like this: >>=20 >> (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, =E2=80=98title=E2=80=99 has been deprecated for a year or s= o. You should now write: (file-system (device (file-system-label "my-root")) (mount-point "/") (type "ext4")) See . Ludo=E2=80=99.