Moved encryption Warning

This commit is contained in:
Daniel Pätzold
2026-03-26 16:12:37 +01:00
parent 86e5d96be3
commit 082d0ad4bd
+2 -2
View File
@@ -21,13 +21,13 @@ fi
if [ ${IPAVAULTUSE} == "false" ]; then
#No encryption configured, will warn, but will continue
echo "Warning: Encryption is turned off by configuration (IPAVAULTUSE is set to false)!"
echo "This makes your private data readable by anyone having access to the harddrive. Will continue, but this is not safe!"
echo
mkdir -p ${DECRYPTEDDATADIR}
RETNO=$?
if [ ${RETNO} -eq 0 ]; then
echo "Private Directory set to ${DECRYPTEDDATADIR}"
echo "Warning: Encryption is turned off by configuration (IPAVAULTUSE is set to false)!"
echo "This makes your private data readable by anyone having access to the harddrive. Will continue, but this is not safe!"
else
echo "Error setting up Directory ${DECRYPTEDDATADIR}"
fi