logik verdreht

This commit is contained in:
lars 2005-06-13 18:53:26 +00:00
parent c7a2d7e128
commit c882a6adea

View file

@ -13,7 +13,8 @@ crypt_mount()
local partitions=`dmsetup ls | grep -v "No devices found" | cut -f1`
for i in $partitions; do
if mount | grep -q "^/dev/mapper/$i$"
then echo -e "\t$i (mounting)"
then true
else echo -e "\t$i (mounting)"
mount "/dev/mapper/$i" &>/dev/null || echo -e " (\"mount /dev/mapper/$i\" failed)" >&2
fi
done
@ -25,9 +26,7 @@ crypt_umount()
local partitions=`dmsetup ls | grep -v "No devices found" | cut -f1`
for i in $partitions; do
if mount | grep -q "^/dev/mapper/$i$"
then true
else
echo -e "\t$i (unmounting)"
then echo -e "\t$i (unmounting)"
umount "/dev/mapper/$i" &>/dev/null || echo -e " (\"umount /dev/mapper/$i\" failed)" >&2
fi
done