From 6e1670ac6a2b324e7d09fa56e2692204d7597c2e Mon Sep 17 00:00:00 2001 From: "Jean (east-high-Nerd)" Date: Fri, 2 Jan 2026 10:07:51 -0500 Subject: [PATCH] Adjust newlines --- zfs.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/zfs.sh b/zfs.sh index 142349f..7ea020c 100755 --- a/zfs.sh +++ b/zfs.sh @@ -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