diff --git a/scripts/check-swap-space.ps1 b/scripts/check-swap-space.ps1 index 8e1a8a0a..b9dcbdb5 100755 --- a/scripts/check-swap-space.ps1 +++ b/scripts/check-swap-space.ps1 @@ -52,7 +52,7 @@ try { } elseif ($free -lt $minLevel) { Write-Output "⚠️ Swap space has only $(MB2String $free) of $(MB2String $total) free" } elseif ($used -lt 5) { - Write-Output "✅ Swap space has all $(MB2String $free) free" + Write-Output "✅ Swap space unused - $(MB2String $free) free" } else { [int64]$percent = ($used * 100) / $total Write-Output "✅ Swap space uses $percent% of $(MB2String $total) - $(MB2String $free) free"