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..9faa47f
--- /dev/null
+++ b/crypt-mount
@@ -0,0 +1,16 @@
+#!/bin/zsh
+
+. $(dirname $0:A)/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
+