This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/system/etc/cron.weekly/btrfs-scrub

13 lines
188 B
Plaintext
Raw Normal View History

2021-06-13 06:37:06 +02:00
#!/bin/sh
# Repeate with btrfs-balance if using RAID
btrfs scrub start /
# Scrub 1 disk at a time
while btrfs scrub status / | grep running; do
sleep 20
done
btrfs scrub start /media