summaryrefslogtreecommitdiff
path: root/crypt_umount
diff options
context:
space:
mode:
Diffstat (limited to 'crypt_umount')
-rwxr-xr-xcrypt_umount15
1 files changed, 15 insertions, 0 deletions
diff --git a/crypt_umount b/crypt_umount
new file mode 100755
index 0000000..5743731
--- /dev/null
+++ b/crypt_umount
@@ -0,0 +1,15 @@
+#!/bin/zsh
+
+. /home/pks/bin/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
+