Adjust newlines

This commit is contained in:
2026-01-02 10:07:51 -05:00
parent 3e233de780
commit 6e1670ac6a

10
zfs.sh
View File

@@ -30,14 +30,14 @@ if [[ "${1}" == '--format' ]]; then
while [[ ! "${zpoolPassword}" == "${zpoolPasswordVerify}" ]] || [[ -z "${zpoolPassword}" ]] || [[ "${#zpoolPassword}" -lt '8' ]]; do
printf \
"\nEnter a password to encrypt your root pool (minimum 8 characters):\n"
"Enter a password to encrypt your root pool (minimum 8 characters):\n"
read \
-r \
-s \
zpoolPassword
printf \
"\nVerify the password to encrypt your root pool:\n"
"Verify the password to encrypt your root pool:\n"
read \
-r \
-s \
@@ -45,13 +45,13 @@ if [[ "${1}" == '--format' ]]; then
if [[ ! "${zpoolPassword}" == "${zpoolPasswordVerify}" ]]; then
printf \
"ERROR:\tPasswords do not match!\n"
"ERROR:\tPasswords do not match!\n\n"
elif [[ -z "${zpoolPassword}" ]]; then
printf \
"ERROR:\tPassword is empty!\n"
"ERROR:\tPassword is empty!\n\n"
elif [[ "${#zpoolPassword}" -lt '8' ]]; then
printf \
"ERROR:\tPassword is too short!\n"
"ERROR:\tPassword is too short!\n\n"
fi
done