901c52f13c
With the initial import of 386BSD 0.1 in 1993, the daily execution of /etc/news.expire was introduced (see commit 1bf9d5d9518e). In 1997, this was brought into periodic resulting in daily/330.news (see commit 28dce04d1975). But as far as I see, /etc/news.expire has never existed. PR: 256238 MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D30631
68 lines
1.1 KiB
Makefile
68 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= periodic
|
|
|
|
CONFGROUPS= CONFS
|
|
|
|
CONFS= 100.clean-disks \
|
|
110.clean-tmps \
|
|
120.clean-preserve \
|
|
140.clean-rwho \
|
|
200.backup-passwd \
|
|
210.backup-aliases \
|
|
221.backup-gpart \
|
|
222.backup-gmirror \
|
|
400.status-disks \
|
|
401.status-graid \
|
|
406.status-gmirror \
|
|
407.status-graid3 \
|
|
408.status-gstripe \
|
|
409.status-gconcat \
|
|
410.status-mfi \
|
|
420.status-network \
|
|
430.status-uptime \
|
|
450.status-security \
|
|
510.status-world-kernel \
|
|
999.local
|
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
.if ${MK_ACCT} != "no"
|
|
CONFGROUPS+= ACCT
|
|
ACCT+= 310.accounting
|
|
ACCTMODE= ${BINMODE}
|
|
ACCTPACKAGE= acct
|
|
.endif
|
|
|
|
.if ${MK_CALENDAR} != "no"
|
|
CONFS+= 300.calendar
|
|
.endif
|
|
|
|
.if ${MK_MAIL} != "no"
|
|
CONFS+= 130.clean-msgs
|
|
.endif
|
|
|
|
.if ${MK_NTP} != "no"
|
|
CONFS+= 480.status-ntpd \
|
|
480.leapfile-ntpd
|
|
.endif
|
|
|
|
.if ${MK_SENDMAIL} != "no"
|
|
CONFGROUPS+= SENDMAIL
|
|
SENDMAIL+= 150.clean-hoststat \
|
|
440.status-mailq \
|
|
460.status-mail-rejects \
|
|
500.queuerun
|
|
SENDMAILPACKAGE= sendmail
|
|
.endif
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
CONFS+= 223.backup-zfs \
|
|
404.status-zfs \
|
|
800.scrub-zfs
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|