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 51114138330 for ; Fri, 23 Sep 2016 19:24:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F10B6E09FF; Fri, 23 Sep 2016 19:24:44 +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 C5A26E09FF for ; Fri, 23 Sep 2016 19:24:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 57EEA3408A6 for ; Fri, 23 Sep 2016 19:24:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89F1A2481 for ; Fri, 23 Sep 2016 19:24:40 +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: <1474658234.0a76627345a173fc00be9864f3f3f5c3b15319cd.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/swap.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 0a76627345a173fc00be9864f3f3f5c3b15319cd X-VCS-Branch: master Date: Fri, 23 Sep 2016 19:24:40 +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: ec5ac793-2abe-4f93-890c-4eaf2e9c1b44 X-Archives-Hash: dce1af46bbe50403dcd3e98218f98d99 commit: 0a76627345a173fc00be9864f3f3f5c3b15319cd Author: William Hubbs gmail com> AuthorDate: Fri Sep 23 19:17:14 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Sep 23 19:17:14 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=0a766273 init.d/swap: remove the case for linux I am removing the separate case for Linux, because we are droppping the "-e" switch. init.d/swap.in | 1 - 1 file changed, 1 deletion(-) diff --git a/init.d/swap.in b/init.d/swap.in index c030ad8..63087e8 100644 --- a/init.d/swap.in +++ b/init.d/swap.in @@ -19,7 +19,6 @@ start() { ebegin "Activating swap devices" case "$RC_UNAME" in - Linux) swapon -a -e >/dev/null;; NetBSD|OpenBSD) swapctl -A -t noblk >/dev/null;; *) swapon -a >/dev/null;; esac