aboutsummaryrefslogtreecommitdiff
path: root/etc/periodic
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2010-09-01 11:11:20 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2010-09-01 11:11:20 +0000
commite8e4bddb9fe7fdb2f91227ff0bfffd343b84782d (patch)
tree23f7e54d579ca12bec1cd585b9edbf262508961b /etc/periodic
parent4d68e973533ea7d1ecb6d36c384e2d92feca29d2 (diff)
downloadsrc-e8e4bddb9fe7fdb2f91227ff0bfffd343b84782d.tar.gz
src-e8e4bddb9fe7fdb2f91227ff0bfffd343b84782d.zip
MFC r211800:
- Change the threshold from 'running next scrub the <value+1>th day after the last one' to 'running next scrub the <value>th day after the last one'. - Improve wording. Requested by: jhell <jhell@DataIX.net>
Notes
Notes: svn path=/stable/8/; revision=212091
Diffstat (limited to 'etc/periodic')
-rwxr-xr-xetc/periodic/daily/800.scrub-zfs6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/periodic/daily/800.scrub-zfs b/etc/periodic/daily/800.scrub-zfs
index 8c0ece79cb4c..f60588abf142 100755
--- a/etc/periodic/daily/800.scrub-zfs
+++ b/etc/periodic/daily/800.scrub-zfs
@@ -53,7 +53,7 @@ case "$daily_scrub_zfs_enable" in
# Now minus last scrub (both in seconds) converted to days.
_scrub_diff=$(expr -e \( $(date +%s) - \
$(date -j -f %F.%T ${_last_scrub} +%s) \) / 60 / 60 / 24)
- if [ ${_scrub_diff} -le ${_pool_threshold} ]; then
+ if [ ${_scrub_diff} -lt ${_pool_threshold} ]; then
echo " skipping scrubbing of pool '${pool}':"
echo " last scrubbing is ${_scrub_diff} days ago, threshold is set to ${_pool_threshold} days"
continue
@@ -65,11 +65,11 @@ case "$daily_scrub_zfs_enable" in
echo " scrubbing of pool '${pool}' already in progress, skipping:"
;;
*"none requested"*)
- echo " starting first scrubbing (after reboot) of pool '${pool}':"
+ echo " starting first scrub (since reboot) of pool '${pool}':"
zpool scrub ${pool}
;;
*)
- echo " starting scrubbing of pool '${pool}':"
+ echo " starting scrub of pool '${pool}':"
zpool scrub ${pool}
;;
esac