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