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