commit: 0a76627345a173fc00be9864f3f3f5c3b15319cd
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Fri Sep 23 19:17:14 2016 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> 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