Jonas Meurer wrote: > if [ "$(dmsetup table $depnode 2> /dev/null | cut -d' ' -f3)" != "crypt" ]; > then > get_lvm_deps "$depnode" >
It seems you have missed that in the first line above, $depnode is *not* quoted. So going these extra steps to be safe and quote the variable in the second line is pointless. This is what I did mean when I said ~"since it is used unquoted anyway above". Correct would be: if [ "$(dmsetup table "$depnode" 2> /dev/null | cut -d' ' -f3)" != "crypt" ]; then Christian. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org