Harald Hoyer 2009-11-05 15:57:52 +01:00
parent 556e4ccb42
commit c3844cbf4a
2 changed files with 4 additions and 2 deletions

View File

@ -17,7 +17,8 @@ if [ -n "$LUKS" ]; then
ask=0
luuid=${2##luks-}
for luks in $LUKS; do
if [ "${luuid##$luks}" != "$2" ]; then
luks=${luks##luks-}
if [ "${luuid##$luks}" != "$luuid" ]; then
ask=1
fi
done

View File

@ -17,7 +17,8 @@ if [ -n "$LUKS" ]; then
ask=0
luuid=${2##luks-}
for luks in $LUKS; do
if [ "${luuid##$luks}" != "$2" ]; then
luks=${luks##luks-}
if [ "${luuid##$luks}" != "$luuid" ]; then
ask=1
fi
done