init.d/swap: remove the case for linux

I am removing the separate case for Linux, because we are droppping the
"-e" switch.
This commit is contained in:
William Hubbs 2016-09-23 14:17:14 -05:00
parent bbf98befb8
commit 0a76627345

View File

@ -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