]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
- properly escape message
authorJan Rękorajski <baggins@pld-linux.org>
Sat, 13 Aug 2005 23:02:24 +0000 (23:02 +0000)
committerJan Rękorajski <baggins@pld-linux.org>
Sat, 13 Aug 2005 23:02:24 +0000 (23:02 +0000)
svn-id: @6308

rc.d/init.d/cpusets

index 9b5676ae26abaebf7f061dc9b1d49af3bc152582..a8f95265423decf804749fa9e7f55233170844e6 100644 (file)
@@ -79,7 +79,7 @@ case "$1" in
        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 @@ case "$1" in
         ;;
   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
This page took 0.03554 seconds and 4 git commands to generate.