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" 47CONFS+= 480.status-ntpd \ 48 480.leapfile-ntpd 49.endif 50 51.if ${MK_SENDMAIL} != "no" 52CONFGROUPS+= SENDMAIL 53SENDMAIL+= 150.clean-hoststat \ 54 440.status-mailq \ 55 460.status-mail-rejects \ 56 500.queuerun 57SENDMAILPACKAGE= sendmail 58.endif 59 60.if ${MK_ZFS} != "no" 61CONFS+= 223.backup-zfs \ 62 404.status-zfs \ 63 800.scrub-zfs 64.endif 65 66.include <bsd.prog.mk> 67