rc-scripts/trunk/rc.d/init.d/cpusets

baggins cvs at pld-linux.org
Sun Aug 14 01:02:26 CEST 2005


Author: baggins
Date: Sun Aug 14 01:02:24 2005
New Revision: 6308

Modified:
   rc-scripts/trunk/rc.d/init.d/cpusets
Log:
- properly escape message


Modified: rc-scripts/trunk/rc.d/init.d/cpusets
==============================================================================
--- rc-scripts/trunk/rc.d/init.d/cpusets	(original)
+++ rc-scripts/trunk/rc.d/init.d/cpusets	Sun Aug 14 01:02:24 2005
@@ -79,7 +79,7 @@
   	rc_splash "bootcpusets start"
 
 	for i in $cpusets_boot ; do
-		show $(nls "Creating cpuset %s" "$i")
+		show "$(nls "Creating cpuset %s" "$i")"
 		cpuset_create $i
 		ok
 	done
@@ -88,7 +88,7 @@
         ;;
   stop)
 	for i in $cpusets_boot ; do
-		show $(nls "Removing cpuset %s" "$i")
+		show "$(nls "Removing cpuset %s" "$i")"
 		busy
 		if cpuset_empty $i ; then
 		    cpuset_remove $i



More information about the pld-cvs-commit mailing list