From 6cf83057ed70ce3ce10ef2dc37537c190ee92405 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sat, 16 Apr 2016 16:33:36 +0200 Subject: fix func.zsh inclusion --- crypt-mount | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 crypt-mount (limited to 'crypt-mount') 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 " + exit +fi + +DEVICE=$1 +NAME=$2 + +cryptsetup luksOpen $DEVICE $NAME +mount /dev/mapper/$NAME + -- cgit v1.2.3