Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/openrc:master commit in: init.d/
Date: Fri, 23 Sep 2016 19:24:48
Message-Id: 1474658234.0a76627345a173fc00be9864f3f3f5c3b15319cd.williamh@OpenRC
1 commit: 0a76627345a173fc00be9864f3f3f5c3b15319cd
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Fri Sep 23 19:17:14 2016 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 23 19:17:14 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=0a766273
7
8 init.d/swap: remove the case for linux
9
10 I am removing the separate case for Linux, because we are droppping the
11 "-e" switch.
12
13 init.d/swap.in | 1 -
14 1 file changed, 1 deletion(-)
15
16 diff --git a/init.d/swap.in b/init.d/swap.in
17 index c030ad8..63087e8 100644
18 --- a/init.d/swap.in
19 +++ b/init.d/swap.in
20 @@ -19,7 +19,6 @@ start()
21 {
22 ebegin "Activating swap devices"
23 case "$RC_UNAME" in
24 - Linux) swapon -a -e >/dev/null;;
25 NetBSD|OpenBSD) swapctl -A -t noblk >/dev/null;;
26 *) swapon -a >/dev/null;;
27 esac