From: Harald Hoyer Date: Wed, 10 Nov 2010 21:50:20 +0000 (+0100) Subject: base/loginit: s/==/= X-Git-Tag: 008~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5dc6f240856a37d864298e67233a8312c882a927;p=thirdparty%2Fdracut.git base/loginit: s/==/= stupid bug! --- diff --git a/modules.d/99base/loginit b/modules.d/99base/loginit index 74762621f..3ceaedea5 100755 --- a/modules.d/99base/loginit +++ b/modules.d/99base/loginit @@ -11,7 +11,7 @@ QUIET=$1 exec 6>/init.log while read line; do - [ "$line" == "DRACUT_LOG_END" ] && exit 0 + [ "$line" = "DRACUT_LOG_END" ] && exit 0 echo "<7>dracut: $line" >&5 # if "quiet" is specified we output to /dev/console [ -n "$QUIET" ] && echo "dracut: $line"