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