freebsd-dev/etc/periodic/daily/Makefile
Sam Leffler 690f477d75 add new build knobs and jigger some existing controls to improve
control over the result of buildworld and installworld; this especially
helps packaging systems such as nanobsd

Reviewed by:	various (posted to arch)
MFC after:	1 month
2008-09-21 22:02:26 +00:00

57 lines
902 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
FILES= 100.clean-disks \
110.clean-tmps \
120.clean-preserve \
200.backup-passwd \
330.news \
400.status-disks \
404.status-zfs \
405.status-ata-raid \
406.status-gmirror \
407.status-graid3 \
408.status-gstripe \
409.status-gconcat \
420.status-network \
450.status-security \
999.local
# NB: keep these sorted by MK_* knobs
.if ${MK_ACCT} != "no"
FILES+= 310.accounting
.endif
.if ${MK_BIND_NAMED} != "no"
FILES+= 470.status-named
.endif
.if ${MK_CALENDAR} != "no"
FILES+= 300.calendar
.endif
.if ${MK_MAIL} != "no"
FILES+= 130.clean-msgs
.endif
.if ${MK_NTP} != "no"
FILES+= 480.status-ntpd
.endif
.if ${MK_RCMDS} != "no"
FILES+= 140.clean-rwho \
430.status-rwho
.endif
.if ${MK_SENDMAIL} != "no"
FILES+= 150.clean-hoststat \
210.backup-aliases \
440.status-mailq \
460.status-mail-rejects \
500.queuerun
.endif
.include <bsd.prog.mk>