Update check-swap-space.ps1

This commit is contained in:
Markus Fleschutz 2022-11-02 21:57:42 +01:00
parent 23dc4c2f82
commit e2a98f1e50

View File

@ -36,6 +36,8 @@ try {
"⚠️ No swap space!"
} elseif ($Free -lt $MinLevel) {
"⚠️ Swap space has only $Free GB of $Total GB left to use!"
} elseif ($Used -eq 0) {
"✅ Swap space of $Total GB is unused."
} elseif ($Used -lt $Free) {
"✅ Swap space uses $Used GB of $Total GB."
} else {