diff options
Diffstat (limited to 'crypt-mount')
-rwxr-xr-x | crypt-mount | 16 |
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 - |