summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.d/swap.in16
1 files changed, 12 insertions, 4 deletions
diff --git a/init.d/swap.in b/init.d/swap.in
index f64ddc5..4e02798 100644
--- a/init.d/swap.in
+++ b/init.d/swap.in
@@ -10,14 +10,22 @@ depend()
start()
{
- ebegin "Activating swap"
- swapon -a >/dev/null
+ ebegin "Activating swap devices"
+ if type swapctl >/dev/null 2>&1; then
+ swapctl -A -t noblk >/dev/null
+ else
+ swapon -a >/dev/null
+ fi
eend 0 # If swapon has nothing todo it errors, so always return 0
}
stop()
{
- ebegin "Deactivating swap"
- swapoff -a >/dev/null
+ ebegin "Deactivating swap devices"
+ if type swapctl >/dev/null 2>&1; then
+ swapctl -U -t noblk >/dev/null
+ else
+ swapoff -a >/dev/null
+ fi
eend 0
}