summaryrefslogtreecommitdiff
path: root/init.d
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2009-04-19 11:15:37 +0000
committerRoy Marples <roy@marples.name>2009-04-19 11:15:37 +0000
commitbbd810425b819318fda48f390fec818c20bbff39 (patch)
tree7d639c7a8ebad9987f3990fa34deec4729478642 /init.d
parentbb6614f4e19e77f527e72f4f5c5e130f189adfc0 (diff)
downloadopenrc-bbd810425b819318fda48f390fec818c20bbff39.tar.gz
openrc-bbd810425b819318fda48f390fec818c20bbff39.tar.bz2
openrc-bbd810425b819318fda48f390fec818c20bbff39.tar.xz
Move special umount of tmpfs to the swap init script where it belongs, #149.
Diffstat (limited to 'init.d')
-rw-r--r--init.d/localmount.in6
-rw-r--r--init.d/swap.in6
2 files changed, 6 insertions, 6 deletions
diff --git a/init.d/localmount.in b/init.d/localmount.in
index 07a95e8..2cdc0c5 100644
--- a/init.d/localmount.in
+++ b/init.d/localmount.in
@@ -52,12 +52,6 @@ stop()
# Flush all pending disk writes now
sync; sync
- # Try to unmount all tmpfs filesystems not in use, else a deadlock may
- # occure, bug #13599.
- # As $RC_SVCDIR may also be tmpfs we cd to it to lock it
- cd "${RC_SVCDIR}"
- umount -a -t tmpfs 2>/dev/null
-
. "${RC_LIBDIR}"/sh/rc-mount.sh
# Umount loopback devices
diff --git a/init.d/swap.in b/init.d/swap.in
index 6b2f705..bad2b13 100644
--- a/init.d/swap.in
+++ b/init.d/swap.in
@@ -21,6 +21,12 @@ start()
stop()
{
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
+ cd "${RC_SVCDIR}"
+ umount -a -t tmpfs 2>/dev/null
+
case "${RC_UNAME}" in
NetBSD|OpenBSD) swapctl -U -t noblk >/dev/null;;
*) swapoff -a >/dev/null;;