diff options
Diffstat (limited to 'umount_crypt')
-rwxr-xr-x | umount_crypt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/umount_crypt b/umount_crypt index 5d6d1e1..489d8d3 100755 --- a/umount_crypt +++ b/umount_crypt @@ -4,10 +4,12 @@ check_root if [ "$#" -ne 2 ]; then - echo "missing arg.: umount_crypt <name> </mount/point/>" + echo "missing args: umount_crypt <name>" exit fi -umount $2 -cryptsetup luksClose /dev/mapper/$1 +NAME=$1 + +umount /media/$NAME +cryptsetup luksClose /dev/mapper/$NAME |