From 3c1b8d5c8947bf0aa3e929c21f59eaf06aba33af Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Thu, 14 Apr 2016 17:30:30 +0200 Subject: more general monitor_soft_raid --- 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..2483aec --- /dev/null +++ b/crypt_mount @@ -0,0 +1,16 @@ +#!/bin/zsh + +. /home/pks/bin/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