Package: zfs-fuse
Severity: wishlist
Tags: patch

Hi,

I recently added this cron job to zfsutils to perform an automated scrub of
all pools the first sunday of each month.

I figured it might be useful in zfs-fuse as well. Since I stole your
bash-completion script a while ago, it's only fair I send something back ;-)

-- System Information:
Debian Release: 6.0.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 8.1-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
#
# Copyright © martin f. krafft <madd...@madduck.net>
# distributed under the terms of the Artistic Licence 2.0
#

# By default, run at 00:57 on every Sunday, but do nothing unless the day of
# the month is less than or equal to 7. Thus, only run on the first Sunday of
# each month. crontab(5) sucks, unfortunately, in this regard; therefore this
# hack (see #380425).
57 0 * * 0 root if [ $(date +\%d) -le 7 ]; then zpool list -H -o name | xargs 
zpool scrub; fi

Reply via email to