diff options
Diffstat (limited to 'crypt-umount')
-rwxr-xr-x | crypt-umount | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crypt-umount b/crypt-umount new file mode 100755 index 0000000..9b99e10 --- /dev/null +++ b/crypt-umount @@ -0,0 +1,15 @@ +#!/bin/zsh + +. $(dirname $0:A)/func.zsh +check_root + +if [ "$#" -ne 1 ]; then + echo "missing args: umount_crypt <name>" + exit +fi + +NAME=$1 + +umount /media/$NAME +cryptsetup luksClose /dev/mapper/$NAME + |