openrc/init.d/swap

23 lines
306 B
Plaintext
Raw Normal View History

#!/sbin/runscript
# Copyright 2007-2008 Roy Marples
# All rights reserved
depend()
{
need localmount
}
start()
{
ebegin "Activating swap"
swapon -a >/dev/null
eend 0 # If swapon has nothing todo it errors, so always return 0
}
stop()
{
ebegin "Deactivating swap"
swapoff -a >/dev/null
eend 0
}