change file descriptor for flock locking
authorHarald Hoyer <harald@redhat.com>
Fri, 15 May 2009 10:48:11 +0000 (12:48 +0200)
committerHarald Hoyer <harald@redhat.com>
Fri, 15 May 2009 10:48:11 +0000 (12:48 +0200)
dash does not like filedescriptors > 9

modules.d/90crypt/cryptroot-ask.sh
modules.d/99base/init

index 499f586..48cc0f7 100755 (executable)
@@ -1,8 +1,8 @@
 #!/bin/sh
 
 [ -b /dev/mapper/$2 ] && exit 0
-(
-       flock -s 200
+{
+       flock -s 9
        /sbin/cryptsetup luksOpen -T1 $1 $2 </dev/console >/dev/console 2>&1
-) 200>/.console.lock
+} 9>/.console.lock
 
index fbfad05..ce26de6 100755 (executable)
@@ -79,10 +79,7 @@ while :; do
 
     sleep 0.5
     i=$(($i+1))
-    (
-       flock -s 200
-       [ $i -gt 20 ] && emergency_shell
-    ) 200>/.console_lock
+    { flock -s 9 ; [ $i -gt 20 ] && emergency_shell; } 9>/.console_lock
 done
 
 # pre pivot scripts are sourced just before we switch over to the new root.