From c813031f122d5bbf1b150acb2bb17794abb1933c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 31 Oct 2006 01:51:11 +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 60e034c1..06bae60d 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -536,7 +536,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