bloeder grep-Fehler
This commit is contained in:
parent
c882a6adea
commit
f60d31f075
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ crypt_mount()
|
||||||
{
|
{
|
||||||
local partitions=`dmsetup ls | grep -v "No devices found" | cut -f1`
|
local partitions=`dmsetup ls | grep -v "No devices found" | cut -f1`
|
||||||
for i in $partitions; do
|
for i in $partitions; do
|
||||||
if mount | grep -q "^/dev/mapper/$i$"
|
if mount | grep -q "^/dev/mapper/$i "
|
||||||
then true
|
then true
|
||||||
else echo -e "\t$i (mounting)"
|
else echo -e "\t$i (mounting)"
|
||||||
mount "/dev/mapper/$i" &>/dev/null || echo -e " (\"mount /dev/mapper/$i\" failed)" >&2
|
mount "/dev/mapper/$i" &>/dev/null || echo -e " (\"mount /dev/mapper/$i\" failed)" >&2
|
||||||
|
@ -25,7 +25,7 @@ crypt_umount()
|
||||||
{
|
{
|
||||||
local partitions=`dmsetup ls | grep -v "No devices found" | cut -f1`
|
local partitions=`dmsetup ls | grep -v "No devices found" | cut -f1`
|
||||||
for i in $partitions; do
|
for i in $partitions; do
|
||||||
if mount | grep -q "^/dev/mapper/$i$"
|
if mount | grep -q "^/dev/mapper/$i "
|
||||||
then 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
|
umount "/dev/mapper/$i" &>/dev/null || echo -e " (\"umount /dev/mapper/$i\" failed)" >&2
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue