summaryrefslogtreecommitdiff
path: root/crypt_mount
diff options
context:
space:
mode:
Diffstat (limited to 'crypt_mount')
-rwxr-xr-xcrypt_mount16
1 files changed, 16 insertions, 0 deletions
diff --git a/crypt_mount b/crypt_mount
new file mode 100755
index 0000000..2483aec
--- /dev/null
+++ b/crypt_mount
@@ -0,0 +1,16 @@
+#!/bin/zsh
+
+. /home/pks/bin/func.zsh
+check_root
+
+if [ "$#" -ne 2 ]; then
+ echo "missing args: mount_crypt </dev/device> <name>"
+ exit
+fi
+
+DEVICE=$1
+NAME=$2
+
+cryptsetup luksOpen $DEVICE $NAME
+mount /dev/mapper/$NAME
+