Browse Source

cryptroot-ask.sh: s/==/=/g (bug #542081)

master
Harald Hoyer 15 years ago
parent
commit
2c2e3ad860
  1. 2
      modules.d/50plymouth/cryptroot-ask.sh
  2. 2
      modules.d/90crypt/cryptroot-ask.sh

2
modules.d/50plymouth/cryptroot-ask.sh

@ -36,7 +36,7 @@ if [ -n "$LUKS" ]; then @@ -36,7 +36,7 @@ if [ -n "$LUKS" ]; then
luuid=${2##luks-}
for luks in $LUKS; do
luks=${luks##luks-}
if [ "${luuid##$luks}" != "$luuid" ] || [ "$luksname" == "$luks" ]; then
if [ "${luuid##$luks}" != "$luuid" ] || [ "$luksname" = "$luks" ]; then
ask=1
break
fi

2
modules.d/90crypt/cryptroot-ask.sh

@ -35,7 +35,7 @@ if [ -n "$LUKS" ]; then @@ -35,7 +35,7 @@ if [ -n "$LUKS" ]; then
luuid=${2##luks-}
for luks in $LUKS; do
luks=${luks##luks-}
if [ "${luuid##$luks}" != "$luuid" ] || [ "$luksname" == "$luks" ]; then
if [ "${luuid##$luks}" != "$luuid" ] || [ "$luksname" = "$luks" ]; then
ask=1
break
fi

Loading…
Cancel
Save