mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-13 00:11:05 +01:00
Added exit code and regex
This commit is contained in:
parent
fce79b14da
commit
155fce82e1
@ -1,6 +1,11 @@
|
||||
#!/bin/bash
|
||||
# Checks the healt of all btrfs volumes
|
||||
exit_code=0
|
||||
for path in $(btrfs filesystem show | awk '/ path /{print $NF}')
|
||||
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
|
||||
exit $exit_code
|
||||
|
Loading…
Reference in New Issue
Block a user