Agtivated btrfs health check for all hosts

This commit is contained in:
Kevin Veen-Birkenbach 2023-04-16 14:55:00 +02:00
parent 59f0fd9063
commit 7cce2dc193
2 changed files with 1 additions and 6 deletions

View File

@ -8,11 +8,6 @@
- native-journalctl - native-journalctl
- native-disc-space-check - native-disc-space-check
- native-free-disc-space - native-free-disc-space
#- native-hostname
- name: setup btrfs health check
hosts: btrfs_health_check_hosts
become: true
roles:
- native-btrfs-health-check - native-btrfs-health-check
- name: setup standard wireguard hosts - name: setup standard wireguard hosts
hosts: wireguard_hosts hosts: wireguard_hosts

View File

@ -2,7 +2,7 @@
exit_code=0 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
echo "Checking healt for $path..." echo "Checking health for $path..."
result=$(btrfs device stats $path) result=$(btrfs device stats $path)
echo "$result" echo "$result"
regex='\.(.*)_errs(\s*)[1-9]' regex='\.(.*)_errs(\s*)[1-9]'