2013-12-21 14:51:11 -06:00
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-04 16:52:19 -06:00
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-11-23 12:04:11 +00:00
|
|
|
|
2008-02-01 12:07:19 +00:00
|
|
|
depend()
|
|
|
|
{
|
2012-02-12 12:37:46 -06:00
|
|
|
before localmount
|
2015-04-28 21:03:49 -04:00
|
|
|
keyword -jail -openvz -prefix -systemd-nspawn -vserver -lxc
|
2008-02-01 09:29:26 +00:00
|
|
|
}
|
|
|
|
|
2008-01-11 12:13:46 +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
|
2012-02-20 18:59:17 -06:00
|
|
|
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
|
2007-11-23 12:04:11 +00:00
|
|
|
eend 0 # If swapon has nothing todo it errors, so always return 0
|
2011-01-17 04:49:07 -05:00
|
|
|
}
|
2007-11-23 12:04:11 +00:00
|
|
|
|
2008-01-11 12:13:46 +00:00
|
|
|
stop()
|
|
|
|
{
|
2008-03-03 19:12:53 +00:00
|
|
|
ebegin "Deactivating swap devices"
|
2009-04-19 11:15:37 +00:00
|
|
|
|
|
|
|
# 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"
|
2009-04-19 11:15:37 +00:00
|
|
|
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
|
2011-01-17 04:49:07 -05:00
|
|
|
eend 0
|
2007-11-23 12:04:11 +00:00
|
|
|
}
|