]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
base/init.sh: mount tmpfs with strictatime
authorHarald Hoyer <harald@redhat.com>
Wed, 18 Apr 2012 10:44:00 +0000 (12:44 +0200)
committerHarald Hoyer <harald@redhat.com>
Thu, 19 Apr 2012 09:59:38 +0000 (11:59 +0200)
modules.d/99base/init.sh

index 0ea72e80f22619a714ae19f994902bda881bbc8f..65bc88f0b42d018eae49757d4b23b6c1dce42363 100755 (executable)
@@ -46,7 +46,7 @@ if [ "$RD_DEBUG" = "yes" ]; then
 fi
 
 if ! ismounted /dev; then
-    mount -t devtmpfs -o mode=0755,nosuid devtmpfs /dev >/dev/null 
+    mount -t devtmpfs -o mode=0755,nosuid,strictatime devtmpfs /dev >/dev/null 
 fi
 
 # prepare the /dev directory
@@ -62,12 +62,12 @@ fi
 
 if ! ismounted /dev/shm; then
     mkdir -m 0755 /dev/shm
-    mount -t tmpfs -o mode=1777,nosuid,nodev tmpfs /dev/shm >/dev/null 
+    mount -t tmpfs -o mode=1777,nosuid,nodev,strictatime tmpfs /dev/shm >/dev/null 
 fi
 
 if ! ismounted /run; then
     mkdir -m 0755 /newrun
-    mount -t tmpfs -o mode=0755,nosuid,nodev tmpfs /newrun >/dev/null 
+    mount -t tmpfs -o mode=0755,nosuid,nodev,strictatime tmpfs /newrun >/dev/null 
     cp -a /run/* /newrun >/dev/null 2>&1
     mount --move /newrun /run
     rm -fr /newrun