SVN: rc-scripts/trunk/rc.d/rc.sysinit

arekm arekm at pld-linux.org
Wed Oct 18 22:02:42 CEST 2006


Author: arekm
Date: Wed Oct 18 22:02:42 2006
New Revision: 7869

Modified:
   rc-scripts/trunk/rc.d/rc.sysinit
Log:
Detect more posible cases when rootfs is read only.

Modified: rc-scripts/trunk/rc.d/rc.sysinit
==============================================================================
--- rc-scripts/trunk/rc.d/rc.sysinit	(original)
+++ rc-scripts/trunk/rc.d/rc.sysinit	Wed Oct 18 22:02:42 2006
@@ -372,7 +372,7 @@
 	# Remount the root filesystem read-write
 	# There could be multiple entries for rootfs, so if any of them is 'ro' we
 	# assume rootfs is readonly.
-	ro=$(awk '$2 == "/" { if ($4 == "ro") readonly = 1} END { print readonly ? "ro" : "rw"}' /proc/mounts)
+	ro=$(awk '$2 == "/" { if (match($4, /(^ro$|^ro,|,ro,|,ro$)/)) readonly = 1} END { print readonly ? "ro" : "rw"} ' /proc/mounts)
 	if [ "$ro" = "ro" ]; then
 		run_cmd "Remounting root filesystem in rw mode" mount -n -o remount,rw /
 	fi


More information about the pld-cvs-commit mailing list