]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
base/init.sh: use loop counter with unique varname
authorHarald Hoyer <harald@redhat.com>
Fri, 27 Jun 2014 16:05:37 +0000 (18:05 +0200)
committerHarald Hoyer <harald@redhat.com>
Mon, 30 Jun 2014 10:03:12 +0000 (12:03 +0200)
$i can be polluted too easily

modules.d/99base/init.sh

index 8c26ebc808587700dbaedb7cd5f80d56724795f2..2cac17cfed1b76a2355ec098b6702ed2176c4c08 100755 (executable)
@@ -232,7 +232,7 @@ source_hook pre-mount
 getarg 'rd.break=mount' -d 'rdbreak=mount' && emergency_shell -n mount "Break mount"
 # mount scripts actually try to mount the root filesystem, and may
 # be sourced any number of times. As soon as one suceeds, no more are sourced.
-i=0
+_i_mount=0
 while :; do
     if ismounted "$NEWROOT"; then
         usable_root "$NEWROOT" && break;
@@ -248,8 +248,8 @@ while :; do
         fi
     done
 
-    i=$(($i+1))
-    [ $i -gt 20 ] \
+    _i_mount=$(($_i_mount+1))
+    [ $_i_mount -gt 20 ] \
         && { flock -s 9 ; action_on_fail "Can't mount root filesystem" && break; } 9>/.console_lock
 done