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