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 A2B2913832E for ; Wed, 27 Jul 2016 19:09:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51EFEE0B2D; Wed, 27 Jul 2016 19:09:48 +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 E716BE0B2D for ; Wed, 27 Jul 2016 19:09:47 +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 B248F340D91 for ; Wed, 27 Jul 2016 19:09:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 130E278D for ; Wed, 27 Jul 2016 19:09:42 +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: <1469646564.f2c2e2dd5a5e0a22da4dcabea6615d0f4697a962.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/sysctl.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: f2c2e2dd5a5e0a22da4dcabea6615d0f4697a962 X-VCS-Branch: master Date: Wed, 27 Jul 2016 19:09:42 +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: c2e6bdf4-e4e9-48b7-9985-d70936853056 X-Archives-Hash: 116b0390d84e00f65cfffa54d4f6ca0a commit: f2c2e2dd5a5e0a22da4dcabea6615d0f4697a962 Author: William Hubbs gmail com> AuthorDate: Wed Jul 27 19:09:24 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Jul 27 19:09:24 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=f2c2e2dd init.d/sysctl.in: typo fix init.d/sysctl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/sysctl.in b/init.d/sysctl.in index 05f5c4c..cb756f3 100644 --- a/init.d/sysctl.in +++ b/init.d/sysctl.in @@ -49,7 +49,7 @@ start() local rc=0 ebegin "Configuring kernel parameters" - case $RC_UNAME" in + case "$RC_UNAME" in *BSD|GNU) BSD_sysctl; rc=$? ;; Linux) Linux_sysctl; rc=$? ;; esac