10 lines
183 B
Plaintext
10 lines
183 B
Plaintext
|
#!/bin/sh -eu
|
||
|
|
||
|
# Scrub all healthy pools.
|
||
|
zpool list -H -o health,name 2>&1 | \
|
||
|
awk 'BEGIN {FS="\t"} {if ($1 ~ /^ONLINE/) print $2}' | \
|
||
|
while read pool
|
||
|
do
|
||
|
zpool scrub "$pool"
|
||
|
done
|