diff options
author | Patrick Simianer <p@simianer.de> | 2016-04-16 16:33:36 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-04-16 16:33:36 +0200 |
commit | 6cf83057ed70ce3ce10ef2dc37537c190ee92405 (patch) | |
tree | fd27c2eb42eab38e78c66830ce1dcd31415ffc15 /crypt-make | |
parent | 267719722af8daf8e0cb4e24e7ee1419d4308e0b (diff) |
fix func.zsh inclusion
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..65cb4bf --- /dev/null +++ b/crypt-make @@ -0,0 +1,17 @@ +#!/bin/zsh + +. $(dirname $0:A)/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 + |