diff options
Diffstat (limited to 'mount_crypt')
-rwxr-xr-x | mount_crypt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/mount_crypt b/mount_crypt deleted file mode 100755 index 2483aec..0000000 --- a/mount_crypt +++ /dev/null @@ -1,16 +0,0 @@ -#!/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 - |