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_make | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 crypt_make (limited to 'crypt_make') diff --git a/crypt_make b/crypt_make new file mode 100755 index 0000000..523ffab --- /dev/null +++ b/crypt_make @@ -0,0 +1,17 @@ +#!/bin/zsh + +. /home/pks/bin/func.zsh +check_root + +if [ "$#" -ne 2 ]; then + echo "missing args: make_crypt " + exit +fi + +DEVICE=$1 +NAME=$2 + +cryptsetup -c aes-xts-plain64 -s 256 -h sha256 -i 1000 --use-random -y luksFormat $DEVICE +cryptsetup luksOpen $DEVICE $NAME +mkfs.xfs -L $NAME /dev/mapper/$NAME + -- cgit v1.2.3