summaryrefslogtreecommitdiff
path: root/crypt-mount
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-04-27 12:19:55 +0200
committerPatrick Simianer <p@simianer.de>2016-04-27 12:19:55 +0200
commitf599f44fe1452350087509b4a26d2250f771a45e (patch)
treed624d3bbc6628db8bf90a0d061ed13d84e2c455b /crypt-mount
parent95b3e4bb744932ce4eac14bb350cc0455d15848a (diff)
better crypt script
Diffstat (limited to 'crypt-mount')
-rwxr-xr-xcrypt-mount16
1 files changed, 0 insertions, 16 deletions
diff --git a/crypt-mount b/crypt-mount
deleted file mode 100755
index 9faa47f..0000000
--- a/crypt-mount
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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
-