From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50321) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d02Yt-0000YC-4L for guix-patches@gnu.org; Mon, 17 Apr 2017 05:03:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d02Yq-0001TY-0G for guix-patches@gnu.org; Mon, 17 Apr 2017 05:03:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53304) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d02Yp-0001TI-Su for guix-patches@gnu.org; Mon, 17 Apr 2017 05:03:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d02Yp-0005Qq-Lw for guix-patches@gnu.org; Mon, 17 Apr 2017 05:03:03 -0400 Subject: bug#26339: [PATCH v2 03/12] scripts: system: Rename --no-grub option to --no-bootloader. Resent-Message-ID: From: Mathieu Othacehe Date: Mon, 17 Apr 2017 11:01:39 +0200 Message-Id: <20170417090148.13791-4-m.othacehe@gmail.com> In-Reply-To: <20170417090148.13791-1-m.othacehe@gmail.com> References: <20170417090148.13791-1-m.othacehe@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26339@debbugs.gnu.org * guix/scripts/system.scm (%options, show-help): Adjust accordingly. Keep "--no-grub" for compatibility reasons, but do not mention it in the help. --- guix/scripts/system.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index 3ec100032..c2212ed14 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -761,7 +761,7 @@ Some ACTIONS support additional ARGS.\n")) (display (_ " --image-size=SIZE for 'vm-image', produce an image of SIZE")) (display (_ " - --no-grub for 'init', do not install GRUB")) + --no-bootloader for 'init', do not install a bootloader")) (display (_ " --share=SPEC for 'vm', share host file system according to SPEC")) (display (_ " @@ -800,7 +800,7 @@ Some ACTIONS support additional ARGS.\n")) (lambda (opt name arg result) (alist-cons 'image-size (size->number arg) result))) - (option '("no-grub") #f #f + (option '("no-bootloader" "no-grub") #f #f (lambda (opt name arg result) (alist-cons 'install-bootloader? #f result))) (option '("full-boot") #f #f -- 2.12.2