aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2010-06-17 12:25:47 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2010-06-17 12:25:47 +0000
commit92dee8c3a04eef8d927b28cdbc4a0db547129c2c (patch)
tree29a168e724ca0ed2824f96a5aa116223ba093b20 /etc
parenta814a26fb2d3b824d44928fce3ea170af4d39e4c (diff)
downloadsrc-92dee8c3a04eef8d927b28cdbc4a0db547129c2c.tar.gz
src-92dee8c3a04eef8d927b28cdbc4a0db547129c2c.zip
- add the zfs scrub script
- move the zfs status script into the MK_ZFS conditional to respect WITHOUT_ZFS Noticed by: Andrzej Tobola <ato@iem.pw.edu.pl>
Notes
Notes: svn path=/head/; revision=209250
Diffstat (limited to 'etc')
-rw-r--r--etc/periodic/daily/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/periodic/daily/Makefile b/etc/periodic/daily/Makefile
index 80583a1182bc..f70dac5d94d3 100644
--- a/etc/periodic/daily/Makefile
+++ b/etc/periodic/daily/Makefile
@@ -8,7 +8,6 @@ FILES= 100.clean-disks \
200.backup-passwd \
330.news \
400.status-disks \
- 404.status-zfs \
405.status-ata-raid \
406.status-gmirror \
407.status-graid3 \
@@ -53,4 +52,9 @@ FILES+= 150.clean-hoststat \
500.queuerun
.endif
+.if ${MK_ZFS} != "no"
+FILES+= 404.status-zfs \
+ 800.scrub-zfs
+.endif
+
.include <bsd.prog.mk>