summaryrefslogtreecommitdiff
path: root/crypt_make
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-04-16 16:34:33 +0200
committerPatrick Simianer <p@simianer.de>2016-04-16 16:34:33 +0200
commit95b3e4bb744932ce4eac14bb350cc0455d15848a (patch)
treec96093d9667c87264a8820d876041fe96b068f57 /crypt_make
parentfca926851e1d56eeb0044727fe976252d646f48d (diff)
mv
Diffstat (limited to 'crypt_make')
-rwxr-xr-xcrypt_make17
1 files changed, 0 insertions, 17 deletions
diff --git a/crypt_make b/crypt_make
deleted file mode 100755
index 523ffab..0000000
--- a/crypt_make
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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
-