bundles/zfs/files/check_zpool_online: refactor

This commit is contained in:
cronekorkn 2023-03-02 15:38:07 +01:00
parent e897ef6898
commit 8b6acf7791
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw

View file

@ -1,16 +1,18 @@
#!/bin/bash
for pool in $(zpool get name -H -o value)
for result in "$(zpool list -H -o name,health tank)"
do
status=$(zpool get health -H -o value $pool)
if [ "$status" != ONLINE ]
name=$(cut -f1 <<< $result)
health=$(cut -f2 <<< $result)
if [ "$health" != ONLINE ]
then
errors="$error\"$pool\" status is $status\n"
errors="$errors\"$name\" health is \"$health\"\n"
fi
done
if [ "$errors" != "" ]
then
echo "CRITICAL - $errors"
echo $errors
exit 2
fi