10 lines
140 B
Plaintext
10 lines
140 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
# We do this on the host's cron now
|
||
|
exit 0
|
||
|
|
||
|
for mnt in /mnt/ardenne; do
|
||
|
chroot /host /usr/bin/btrfs scrub start -B $mnt
|
||
|
done
|
||
|
|