mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
Added exit code and regex
This commit is contained in:
parent
b31f8a4da8
commit
69bb10990e
@ -1,6 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Checks the healt of all btrfs volumes
|
exit_code=0
|
||||||
for path in $(btrfs filesystem show | awk '/ path /{print $NF}')
|
for path in $(btrfs filesystem show | awk '/ path /{print $NF}')
|
||||||
do
|
do
|
||||||
btrfs device stats $path
|
echo "Checking healt for $path..."
|
||||||
|
result=$(btrfs device stats $path)
|
||||||
|
echo "$result"
|
||||||
|
regex='\.(.*)_errs(\s*)[1-9]'
|
||||||
|
[[ "$result" =~ $regex ]] && echo "Errors found!" && exit_code=1;
|
||||||
done
|
done
|
||||||
|
exit $exit_code
|
||||||
|
Loading…
Reference in New Issue
Block a user