From 3743544a00b8e8e8ba1f64ad4fa9d610975448b9 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 31 Oct 2006 01:50:43 +0000 Subject: mount tmpfs with -n (#213132) --- rc.d/rc.sysinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 07f3d2ed..b02e440e 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -537,7 +537,7 @@ if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then elif [ x$rw_mount_dev != x ] && mount $rw_mount_dev $mountopts "$RW_MOUNT" > /dev/null 2>&1; then rm -rf "$RW_MOUNT" > /dev/null 2>&1 else - mount -t tmpfs $mountopts none "$RW_MOUNT" + mount -n -t tmpfs $mountopts none "$RW_MOUNT" fi for file in /etc/rwtab /etc/rwtab.d/* ; do -- cgit