1
2.include <src.opts.mk>
3
4PACKAGE=	periodic
5
6CONFGROUPS=	CONFS
7
8CONFS=	100.clean-disks \
9	110.clean-tmps \
10	120.clean-preserve \
11	140.clean-rwho \
12	200.backup-passwd \
13	210.backup-aliases \
14	221.backup-gpart \
15	222.backup-gmirror \
16	400.status-disks \
17	401.status-graid \
18	406.status-gmirror \
19	407.status-graid3 \
20	408.status-gstripe \
21	409.status-gconcat \
22	410.status-mfi \
23	420.status-network \
24	430.status-uptime \
25	450.status-security \
26	510.status-world-kernel \
27	999.local
28
29# NB: keep these sorted by MK_* knobs
30
31.if ${MK_ACCT} != "no"
32CONFGROUPS+=	ACCT
33ACCT+=		310.accounting
34ACCTMODE=	${BINMODE}
35ACCTPACKAGE=	acct
36.endif
37
38.if ${MK_CALENDAR} != "no"
39CONFS+=	300.calendar
40.endif
41
42.if ${MK_MAIL} != "no"
43CONFS+=	130.clean-msgs
44.endif
45
46.if ${MK_NTP} != "no"
47CONFGROUPS+=	NTP
48NTP+=		480.status-ntpd \
49		480.leapfile-ntpd
50NTPMODE=	${BINMODE}
51NTPPACKAGE=	ntp
52.endif
53
54.if ${MK_SENDMAIL} != "no"
55CONFGROUPS+=		SENDMAIL
56SENDMAIL+=		150.clean-hoststat \
57			440.status-mailq \
58			460.status-mail-rejects \
59			500.queuerun
60SENDMAILPACKAGE=	sendmail
61.endif
62
63.if ${MK_ZFS} != "no"
64CONFS+=	223.backup-zfs \
65	404.status-zfs \
66	800.scrub-zfs  \
67	801.trim-zfs
68.endif
69
70.include <bsd.prog.mk>
71