886e4c966e
With the merge of spl and zfs the extra level of directories is not needed anymore. Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/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
|