diff options
author | Patrick Simianer <p@simianer.de> | 2016-04-14 17:30:30 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-04-14 17:30:30 +0200 |
commit | 3c1b8d5c8947bf0aa3e929c21f59eaf06aba33af (patch) | |
tree | 71111c40dd00a4739c53413f5926a26bbe901ead /crypt_make | |
parent | 2c01777eb98ac7649d24e1a60a94393892b7e7af (diff) |
more general monitor_soft_raid
Diffstat (limited to 'crypt_make')
-rwxr-xr-x | crypt_make | 17 |
1 files changed, 17 insertions, 0 deletions
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 </dev/device> <name>" + 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 + |