From mboxrd@z Thu Jan 1 00:00:00 1970 From: "pelzflorian (Florian Pelz)" Subject: bug#40538: installer: Support uvesafb to install on machines without KMS. Date: Sun, 12 Apr 2020 11:23:30 +0200 Message-ID: <20200412092330.4tgmyv24wbeaopnc@pelzflorian.localdomain> References: <20200410125447.smn6xhcixe7hpday@pelzflorian.localdomain> <87tv1rv21e.fsf@gnu.org> <20200411184346.c3cgop7egcjyqzwf@pelzflorian.localdomain> <874ktpspr5.fsf@gnu.org> <20200411211152.GA31526@E5400> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="omaf2nlt6spy2zfw" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:40700) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNYqR-0001Bs-7y for bug-guix@gnu.org; Sun, 12 Apr 2020 05:24:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNYqQ-00008O-4o for bug-guix@gnu.org; Sun, 12 Apr 2020 05:24:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45814) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jNYqQ-00008F-1p for bug-guix@gnu.org; Sun, 12 Apr 2020 05:24:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jNYqP-0000L7-Us for bug-guix@gnu.org; Sun, 12 Apr 2020 05:24:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Content-Disposition: inline In-Reply-To: <20200411211152.GA31526@E5400> 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-mx.org@gnu.org Sender: "bug-Guix" To: Efraim Flashner Cc: 40538@debbugs.gnu.org --omaf2nlt6spy2zfw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Apr 12, 2020 at 12:11:52AM +0300, Efraim Flashner wrote: > > (respawn? #f) > > (one-shot? #t)))) > > You don't need both of these lines. If it's a one-shot service then it > shouldn't respawn when it finishes, just when something else needs it > again. Thank you. Maybe I should push the attached patch? Regards, Florian --omaf2nlt6spy2zfw Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0001-services-kernel-module-loader-Clean-up.patch" >From e16a277d1ec1afa14dede7bac0307b12603ebebd Mon Sep 17 00:00:00 2001 From: Florian Pelz Date: Sun, 12 Apr 2020 11:08:28 +0200 Subject: [PATCH] services: kernel-module-loader: Clean up. Suggested by Efraim Flashner . See . * gnu/services/linux.scm (kernel-module-loader-shepherd-service): Remove unneeded 'respawn?' field. --- gnu/services/linux.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/gnu/services/linux.scm b/gnu/services/linux.scm index 781a61973c..12934c2084 100644 --- a/gnu/services/linux.scm +++ b/gnu/services/linux.scm @@ -142,7 +142,6 @@ representation." (documentation "Load kernel modules.") (provision '(kernel-module-loader)) (requirement '(file-systems)) - (respawn? #f) (one-shot? #t) (modules `((srfi srfi-1) (srfi srfi-34) -- 2.26.0 --omaf2nlt6spy2zfw--