Mercurial > repos > other > usr-local-bin
diff umount-crypt @ 5:14e726efe9b0
Change from sudo (which may record command) to su, since we're mounting something private/encrypted
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 09 Nov 2014 09:29:01 +0000 |
parents | e85e3470a41e |
children |
line wrap: on
line diff
--- a/umount-crypt Sun Nov 09 09:28:31 2014 +0000 +++ b/umount-crypt Sun Nov 09 09:29:01 2014 +0000 @@ -18,7 +18,4 @@ exit 3 fi -sudo umount "/media/$LOOP_DEV" -sudo rmdir "/media/$LOOP_DEV" -sudo cryptsetup luksClose "/dev/mapper/$LOOP_DEV" -sudo losetup -d "/dev/$LOOP_DEV" +su -c "umount \"/media/$LOOP_DEV\" && rmdir \"/media/$LOOP_DEV\" && cryptsetup luksClose \"/dev/mapper/$LOOP_DEV\" && losetup -d \"/dev/$LOOP_DEV\""