Use swapctl for NetBSD.

This commit is contained in:
Roy Marples 2008-03-03 19:12:53 +00:00
parent e55cb5dd5b
commit 6ca5e8e0dc

View File

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