openrc/init.d/swap.in

37 lines
809 B
Plaintext
Raw Normal View History

#!@SBINDIR@/runscript
2009-05-01 15:11:40 +01:00
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
2008-02-01 12:07:19 +00:00
depend()
{
before localmount
keyword -jail -openvz -prefix -vserver -lxc
2008-02-01 09:29:26 +00:00
}
start()
{
2008-03-03 19:12:53 +00:00
ebegin "Activating swap devices"
2009-04-27 07:51:18 +00:00
case "$RC_UNAME" in
Linux) swapon -a -e >/dev/null;;
2008-03-04 00:29:43 +00:00
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-03 19:12:53 +00:00
ebegin "Deactivating swap devices"
# Try to unmount all tmpfs filesystems not in use, else a deadlock may
2012-02-12 12:38:37 -06:00
# occur. As $RC_SVCDIR may also be tmpfs we cd to it to lock it
2009-04-27 07:51:18 +00:00
cd "$RC_SVCDIR"
umount -a -t tmpfs 2>/dev/null
2009-04-27 07:51:18 +00:00
case "$RC_UNAME" in
2008-03-04 00:29:43 +00:00
NetBSD|OpenBSD) swapctl -U -t noblk >/dev/null;;
*) swapoff -a >/dev/null;;
esac
eend 0
}