Skip to content

Commit 0a6b1bd

Browse files
committed
setup-secure-dump.sh: Fix cryfs setup instructions and increase recommended password length
1 parent 7629115 commit 0a6b1bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup-secure-dump.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ then
2424
echo "Please, check out either https://www.cryfs.org/ or https://nuetzlich.net/gocryptfs/"
2525
echo "These tools are easy to use and it shouldn't be hard to use them with a random key."
2626
echo ""
27-
echo "For example, in order to do basically the same thing as this script with cryfs, just add the following code to your ~/.bashrc:
27+
echo "For example, in order to do basically the same thing as this script with cryfs, just add the following code to your ~/.profile:
2828
if ! mountpoint -q -- "~/secure_dump"
2929
then
3030
[ -d ~/.secure_dump_enc ] && rm -r ~/.secure_dump_enc ~/secure_dump
3131
mkdir -p ~/.secure_dump_enc ~/.secure_dump
32-
head -c 10 /dev/urandom | base64 | CRYFS_FRONTEND=noninteractive cryfs --allow-replaced-filesystem ~/.secure_dump_enc ~/secure_dump
32+
head -c 64 /dev/urandom | base64 | CRYFS_FRONTEND=noninteractive cryfs --allow-replaced-filesystem ~/.secure_dump_enc ~/secure_dump
3333
fi
3434
"
3535
echo ""

0 commit comments

Comments
 (0)