Add missing dollar

Check is missing a dollar leading to an error on deploy ramdisk
consoles when booting .

Change-Id: Id61af0f7abbc353e0750580b80e448820cc17b10
This commit is contained in:
Tomas Hancock 2014-06-04 12:39:23 +01:00
parent 50cb019a25
commit 6b8a0408d8

View File

@ -17,7 +17,7 @@ readonly BOOT_INTERFACE
ifconfig lo 127.0.0.1 up
rv=0
ifconfig "$BOOT_INTERFACE" up || rv=1
if [ rv -ne 0 ]; then
if [ $rv -ne 0 ]; then
sleep 10
rv=0
ifconfig "$BOOT_INTERFACE" up || rv=1