openrc/init.d/swap.in

36 lines
776 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
2008-02-01 17:37:19 +05:30
depend()
{
2008-02-01 14:59:26 +05:30
need localmount
keyword -jail -openvz -prefix -vserver -lxc
2008-02-01 14:59:26 +05:30
}
start()
{
2008-03-04 00:42:53 +05:30
ebegin "Activating swap devices"
2009-04-27 13:21:18 +05:30
case "$RC_UNAME" in
2008-03-04 05:59:43 +05:30
NetBSD|OpenBSD) swapctl -A -t noblk >/dev/null;;
*) swapon -a >/dev/null;;
esac
eend 0 # If swapon has nothing todo it errors, so always return 0
}
stop()
{
2008-03-04 00:42:53 +05:30
ebegin "Deactivating swap devices"
# Try to unmount all tmpfs filesystems not in use, else a deadlock may
# occure. As $RC_SVCDIR may also be tmpfs we cd to it to lock it
2009-04-27 13:21:18 +05:30
cd "$RC_SVCDIR"
umount -a -t tmpfs 2>/dev/null
2009-04-27 13:21:18 +05:30
case "$RC_UNAME" in
2008-03-04 05:59:43 +05:30
NetBSD|OpenBSD) swapctl -U -t noblk >/dev/null;;
*) swapoff -a >/dev/null;;
esac
eend 0
}