From 97f707db0d42e816b90bcd0a3dee25a197ae5ac0 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Wed, 28 Nov 2007 10:06:13 +0000 Subject: FreeBSD-7 and NetBSD support tmpfs, so try and use this first. --- init.d/halt.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'init.d') diff --git a/init.d/halt.sh b/init.d/halt.sh index fb82db1c..c3f76f3b 100755 --- a/init.d/halt.sh +++ b/init.d/halt.sh @@ -58,7 +58,9 @@ if [ "${RC_SYS}" = "VPS" ]; then fi # If $svcdir is still mounted, preserve it if we can -if mountinfo -q "${RC_SVCDIR}" && [ -w "${RC_LIBDIR}" ] ; then + +mnt=$(mountinfo --node "${RC_SVCDIR}") +if [ -n "${mnt}" -a -w "${RC_LIBDIR}" ] ; then f_opts="-m -c" [ "${RC_UNAME}" = "Linux" ] && f_opts="-c" if [ -n "$(fuser ${f_opts} "${svcdir}" 2>/dev/null)" ] ; then -- cgit v1.2.3