From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 50D85138331 for ; Wed, 31 Aug 2016 13:47:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54D9221C072; Wed, 31 Aug 2016 13:47:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC9EE21C072 for ; Wed, 31 Aug 2016 13:47:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 610F034067D for ; Wed, 31 Aug 2016 13:47:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 390792467 for ; Wed, 31 Aug 2016 13:47:18 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1472650687.484e6089b90ffef9f53bdc8968c240e1b3a3f221.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:0.21.x commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/modules-load.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 484e6089b90ffef9f53bdc8968c240e1b3a3f221 X-VCS-Branch: 0.21.x Date: Wed, 31 Aug 2016 13:47:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 13a47222-59c0-4000-9fb7-4ff40a093cce X-Archives-Hash: 5dbd9b5d74ab44751ce1a726ad1399bd commit: 484e6089b90ffef9f53bdc8968c240e1b3a3f221 Author: Martin Väth mvath de> AuthorDate: Tue Aug 30 17:47:13 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Aug 31 13:38:07 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=484e6089 Fix typo in RC_UNAME check of modules-load The $RC_UNAME "Linux" had been misspelled as "linux". As a consequence, entries in e.g. /etc/modules-load.d failed to load any module succesfully under Linux(!) init.d/modules-load.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/modules-load.in b/init.d/modules-load.in index 2387a8d..c8fe422 100644 --- a/init.d/modules-load.in +++ b/init.d/modules-load.in @@ -54,7 +54,7 @@ load_modules() ebegin "Loading module $x" case "$RC_UNAME" in FreeBSD) kldload "$x"; rc=$? ;; - linux) modprobe -q "$x"; rc=$? ;; + Linux) modprobe -q "$x"; rc=$? ;; *) ;; esac eend $rc "Failed to load $x"