summaryrefslogtreecommitdiff
path: root/crypt-mount
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-04-16 16:33:36 +0200
committerPatrick Simianer <p@simianer.de>2016-04-16 16:33:36 +0200
commit6cf83057ed70ce3ce10ef2dc37537c190ee92405 (patch)
treefd27c2eb42eab38e78c66830ce1dcd31415ffc15 /crypt-mount
parent267719722af8daf8e0cb4e24e7ee1419d4308e0b (diff)
fix func.zsh inclusion
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
+