From af5fec4533721e16388ef8df56d1c960bf6fe407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=BCller?= Date: Thu, 20 Apr 2023 14:45:44 +0200 Subject: [PATCH] Update proxmox-zfs-postinstall.sh typo --- proxmox-zfs-postinstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox-zfs-postinstall.sh b/proxmox-zfs-postinstall.sh index 7df1062..e839d30 100644 --- a/proxmox-zfs-postinstall.sh +++ b/proxmox-zfs-postinstall.sh @@ -99,7 +99,7 @@ fi echo -e "######## CONFIGURE SWAPPINESS ########\n" SWAPPINESS=$(cat /proc/sys/vm/swappiness) echo "The current swappiness is configured to '$SWAPPINESS %' of free memory until using swap." -read -p "If you want to change the swappiness, please type in the percentage as number (0 = diasbled):" user_input +read -p "If you want to change the swappiness, please type in the percentage as number (0 = disabled):" user_input if echo "$user_input" | grep -qE '^[0-9]+$'; then echo "Changing swappiness from '$SWAPPINESS %' to '$user_input %'" SWAPPINESS=$user_input