xref: /freebsd/share/man/man5/periodic.conf.5 (revision 0957b409)
1.\"-
2.\" Copyright (c) 2000 Brian Somers <brian@Awfulhak.org>
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\"    notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\"    notice, this list of conditions and the following disclaimer in the
12.\"    documentation and/or other materials provided with the distribution.
13.\"
14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24.\" SUCH DAMAGE.
25.\"
26.\" $FreeBSD$
27.\"
28.Dd March 7, 2018
29.Dt PERIODIC.CONF 5
30.Os
31.Sh NAME
32.Nm periodic.conf
33.Nd periodic job configuration information
34.Sh DESCRIPTION
35The file
36.Nm
37contains a description of how daily, weekly and monthly system maintenance
38jobs should run.
39It resides in the
40.Pa /etc/defaults
41directory and parts may be overridden by a file of the same name in
42.Pa /etc ,
43which itself may be overridden by the
44.Pa /etc/periodic.conf.local
45file.
46.Pp
47The
48.Nm
49file
50is actually sourced as a shell script from each of the periodic scripts
51and is intended to simply provide default configuration variables.
52.Pp
53The following variables are used by
54.Xr periodic 8
55itself:
56.Bl -tag -offset 4n -width 2n
57.It Va local_periodic
58.Pq Vt str
59List of directories to search for periodic scripts.
60This list is always prefixed with
61.Pa /etc/periodic ,
62and is only used when an argument to
63.Xr periodic 8
64is not an absolute directory name.
65.It Ao Ar dir Ac Ns Va _output
66.Pq Vt path No or Vt list
67What to do with the output of the scripts executed from
68the directory
69.Ar dir .
70If this variable is set to an absolute path name, output is logged to
71that file, otherwise it is taken as one or more space separated email
72addresses and mailed to those users.
73If this variable is not set or is empty, output is sent to standard output.
74.Pp
75For an unattended machine, suitable values for
76.Va daily_output ,
77.Va weekly_output ,
78and
79.Va monthly_output
80might be
81.Dq Li /var/log/daily.log ,
82.Dq Li /var/log/weekly.log ,
83and
84.Dq Li /var/log/monthly.log
85respectively, as
86.Xr newsyslog 8
87will rotate these files (if they exists) at the appropriate times.
88.It Ao Ar dir Ac Ns Va _show_success
89.It Ao Ar dir Ac Ns Va _show_info
90.It Ao Ar dir Ac Ns Va _show_badconfig
91.Pq Vt bool
92These variables control whether
93.Xr periodic 8
94will mask the output of the executed scripts based on their return code
95(where
96.Ar dir
97is the base directory name in which each script resides).
98If the return code of a script is
99.Sq 0
100and
101.Ao Ar dir Ac Ns Va _show_success
102is set to
103.Dq Li NO ,
104.Xr periodic 8
105will mask the script's output.
106If the return code of a script is
107.Sq 1
108and
109.Ao Ar dir Ac Ns Va _show_info
110is set to
111.Dq Li NO ,
112.Xr periodic 8
113will mask the script's output.
114If the return code of a script is
115.Sq 2
116and
117.Ao Ar dir Ac Ns Va _show_badconfig
118is set to
119.Dq Li NO ,
120.Xr periodic 8
121will mask the script's output.
122If these variables are set to neither
123.Dq Li YES
124nor
125.Dq Li NO ,
126they default to
127.Dq Li YES ,
128.Dq Li YES
129and
130.Dq Li NO
131respectively.
132.Pp
133Refer to the
134.Xr periodic 8
135manual page for how script return codes are interpreted.
136.It Va anticongestion_sleeptime
137.Pq Vt int
138The maximum number of seconds to randomly sleep in order to smooth bursty loads
139on a shared resource, such as a download mirror.
140.El
141.Pp
142The following variables are used by the standard scripts that reside in
143.Pa /etc/periodic/daily :
144.Bl -tag -offset 4n -width 2n
145.It Va daily_clean_disks_enable
146.Pq Vt bool
147Set to
148.Dq Li YES
149if you want to remove all files matching
150.Va daily_clean_disks_files
151daily.
152.It Va daily_clean_disks_files
153.Pq Vt str
154Set to a list of file names to match.
155Wild cards are permitted.
156.It Va daily_clean_disks_days
157.Pq Vt num
158When
159.Va daily_clean_disks_enable
160is set to
161.Dq Li YES ,
162this must also be set to the number of days old that a file's access
163and modification times must be before it is deleted.
164.It Va daily_clean_disks_verbose
165.Pq Vt bool
166Set to
167.Dq Li YES
168if you want the removed files to be reported in your daily output.
169.It Va daily_clean_tmps_enable
170.Pq Vt bool
171Set to
172.Dq Li YES
173if you want to clear temporary directories daily.
174.It Va daily_clean_tmps_dirs
175.Pq Vt str
176Set to the list of directories to clear if
177.Va daily_clean_tmps_enable
178is set to
179.Dq Li YES .
180.It Va daily_clean_tmps_days
181.Pq Vt num
182When
183.Va daily_clean_tmps_enable
184is set, this must also be set to the number of days old that a file's access
185and modification times must be before it is deleted.
186.It Va daily_clean_tmps_ignore
187.Pq Vt str
188Set to the list of files that should not be deleted when
189.Va daily_clean_tmps_enable
190is set to
191.Dq Li YES .
192Wild card characters are permitted.
193.It Va daily_clean_tmps_verbose
194.Pq Vt bool
195Set to
196.Dq Li YES
197if you want the removed files to be reported in your daily output.
198.It Va daily_clean_preserve_enable
199.Pq Vt bool
200Set to
201.Dq Li YES
202if you wish to remove old files from
203.Pa /var/preserve .
204.It Va daily_clean_preserve_days
205.Pq Vt num
206Set to the number of days that files must not have been modified before
207they are deleted.
208.It Va daily_clean_preserve_verbose
209.Pq Vt bool
210Set to
211.Dq Li YES
212if you want the removed files to be reported in your daily output.
213.It Va daily_clean_msgs_enable
214.Pq Vt bool
215Set to
216.Dq Li YES
217if you wish old system messages to be purged.
218.It Va daily_clean_msgs_days
219.Pq Vt num
220Set to the number of days that files must not have been modified before
221they are deleted.
222If this variable is left blank, the
223.Xr msgs 1
224default is used.
225.It Va daily_clean_rwho_enable
226.Pq Vt bool
227Set to
228.Dq Li YES
229if you wish old files in
230.Pa /var/who
231to be purged.
232.It Va daily_clean_rwho_days
233.Pq Vt num
234Set to the number of days that files must not have been modified before
235they are deleted.
236.It Va daily_clean_rwho_verbose
237.Pq Vt bool
238Set to
239.Dq Li YES
240if you want the removed files to be reported in your daily output.
241.It Va daily_clean_hoststat_enable
242.Pq Vt bool
243Set to
244.Dq Li YES
245to run
246.Nm sendmail Fl bH
247to automatically purge stale entries from
248.Xr sendmail 8 Ns 's
249host status cache.
250Files will be deleted using the same criteria as
251.Xr sendmail 8
252would normally use when determining whether to believe the cached information,
253as configured in
254.Pa /etc/mail/sendmail.cf .
255.It Va daily_backup_passwd_enable
256.Pq Vt bool
257Set to
258.Dq Li YES
259if you want the
260.Pa /etc/master.passwd
261and
262.Pa /etc/group
263files backed up and reported on.
264Reporting consists of checking both files for modifications and running
265.Xr chkgrp 8
266on the
267.Pa group
268file.
269.It Va daily_backup_aliases_enable
270.Pq Vt bool
271Set to
272.Dq Li YES
273if you want the
274.Pa /etc/mail/aliases
275file backed up and modifications to be displayed in your daily output.
276.It Va daily_calendar_enable
277.Pq Vt bool
278Set to
279.Dq Li YES
280if you want to run
281.Nm calendar Fl a
282daily.
283.It Va daily_accounting_enable
284.Pq Vt bool
285Set to
286.Dq Li YES
287if you want to rotate your daily accounting files.
288No rotations are necessary unless
289.Va accounting_enable
290is enabled in
291.Xr rc.conf 5 .
292.It Va daily_accounting_compress
293.Pq Vt bool
294Set to
295.Dq Li YES
296if you want your daily accounting files to be compressed using
297.Xr gzip 1 .
298.It Va daily_accounting_save
299.Pq Vt num
300When
301.Va daily_accounting_enable
302is set, this may also be set to the number of daily accounting files that are
303to be saved.
304The default is
305.Dq Li 3 .
306.It Va daily_accounting_flags
307.Pq Vt str
308Set to the arguments to pass to the
309.Xr sa 8
310utility (in addition to
311.Fl s )
312when
313.Va daily_accounting_enable
314is set to
315.Dq Li YES .
316The default is
317.Fl q .
318.It Va daily_news_expire_enable
319.Pq Vt bool
320Set to
321.Dq Li YES
322if you want to run
323.Pa /etc/news.expire .
324.It Va daily_status_disks_enable
325.Pq Vt bool
326Set to
327.Dq Li YES
328if you want to run
329.Xr df 1
330(with the arguments supplied in
331.Va daily_status_disks_df_flags )
332and
333.Nm dump Fl W .
334.It Va daily_status_disks_df_flags
335.Pq Vt str
336Set to the arguments for the
337.Xr df 1
338utility when
339.Va daily_status_disks_enable
340is set to
341.Dq Li YES .
342The default is
343.Fl l Fl h .
344.It Va daily_status_zfs_enable
345.Pq Vt bool
346Set to
347.Dq Li YES
348if you want to run
349.Nm zpool Cm status
350on your
351.Xr zfs 8
352pools.
353.It Va daily_status_zfs_zpool_list_enable
354.Pq Vt bool
355Set to
356.Dq Li YES
357if you want to run
358.Nm zpool Cm list
359on your
360.Xr zfs 8
361pools.
362Requires
363.Va daily_status_zfs_enable
364to be set to
365.Li YES .
366.It Va daily_status_gmirror_enable
367.Pq Vt bool
368Set to
369.Dq Li YES
370if you want to run
371.Nm gmirror Cm status
372on your
373.Xr gmirror 8
374devices.
375.It Va daily_status_graid3_enable
376.Pq Vt bool
377Set to
378.Dq Li YES
379if you want to run
380.Nm graid3 Cm status
381on your
382.Xr graid3 8
383devices.
384.It Va daily_status_gstripe_enable
385.Pq Vt bool
386Set to
387.Dq Li YES
388if you want to run
389.Nm gstripe Cm status
390on your
391.Xr gstripe 8
392devices.
393.It Va daily_status_gconcat_enable
394.Pq Vt bool
395Set to
396.Dq Li YES
397if you want to run
398.Nm gconcat Cm status
399on your
400.Xr gconcat 8
401devices.
402.It Va daily_status_mfi_enable
403.Pq Vt bool
404Set to
405.Dq Li YES
406if you want to run
407.Nm mfiutil Cm status
408on your
409.Xr mfi 4
410devices.
411.It Va daily_status_network_enable
412.Pq Vt bool
413Set to
414.Dq Li YES
415if you want to run
416.Nm netstat Fl i .
417.It Va daily_status_network_netstat_flags
418.Pq Vt str
419Set to additional arguments for the
420.Xr netstat 1
421utility when
422.Va daily_status_network_enable
423is set to
424.Dq Li YES .
425The default is
426.Fl d .
427.It Va daily_status_network_usedns
428.Pq Vt bool
429Set to
430.Dq Li YES
431if you want to run
432.Xr netstat 1
433without the
434.Fl n
435option (to do DNS lookups).
436.It Va daily_status_uptime_enable
437.Pq Vt bool
438Set to
439.Dq Li YES
440if you want to run
441.Xr uptime 1
442(or
443.Xr ruptime 1
444if
445.Va rwhod_enable
446is set to
447.Dq Li YES
448in
449.Pa /etc/rc.conf ) .
450.It Va daily_status_mailq_enable
451.Pq Vt bool
452Set to
453.Dq Li YES
454if you want to run
455.Xr mailq 1 .
456.It Va daily_status_mailq_shorten
457.Pq Vt bool
458Set to
459.Dq Li YES
460if you want to shorten the
461.Xr mailq 1
462output when
463.Va daily_status_mailq_enable
464is set to
465.Dq Li YES .
466.It Va daily_status_include_submit_mailq
467.Pq Vt bool
468Set to
469.Dq Li YES
470if you also want to run
471.Xr mailq 1
472on the submit mail queue when
473.Va daily_status_mailq_enable
474is set to
475.Dq Li YES .
476This may not work with MTAs other than
477.Xr sendmail 8 .
478.It Va daily_status_security_enable
479.Pq Vt bool
480Set to
481.Dq Li YES
482if you want to run the security check.
483The security check is another set of
484.Xr periodic 8
485scripts.
486The system defaults are in
487.Pa /etc/periodic/security .
488Local scripts should be placed in
489.Pa /usr/local/etc/periodic/security .
490See the
491.Xr periodic 8
492manual page for more information.
493.It Va daily_status_security_inline
494.Pq Vt bool
495Set to
496.Dq Li YES
497if you want the security check output inline.
498The default is to either mail or log the output according to the value of
499.Va daily_status_security_output .
500.It Va daily_status_security_output
501.Pq Vt str
502Where to send the output of the security check if
503.Va daily_status_security_inline
504is set to
505.Dq Li NO .
506This variable behaves in the same way as the
507.Va *_output
508variables above, namely it can be set either to one or more email addresses
509or to an absolute file name.
510.It Va daily_status_mail_rejects_enable
511.Pq Vt bool
512Set to
513.Dq Li YES
514if you want to summarise mail rejections logged to
515.Pa /var/log/maillog
516for the previous day.
517.It Va daily_status_mail_rejects_logs
518.Pq Vt num
519Set to the number of maillog files that should be checked
520for yesterday's mail rejects.
521.It Va daily_status_ntpd
522.Pq Vt bool
523Set to
524.Dq Li YES
525if you want to enable NTP status check.
526.It Va daily_status_world_kernel
527.Pq Vt bool
528Set to
529.Dq Li YES
530to check the running userland and kernel are in sync.
531.It Va daily_queuerun_enable
532.Pq Vt bool
533Set to
534.Dq Li YES
535if you want to manually run the mail queue at least once a day.
536.It Va daily_submit_queuerun
537.Pq Vt bool
538Set to
539.Dq Li YES
540if you also want to manually run the submit mail queue at least once a day
541when
542.Va daily_queuerun_enable
543is set to
544.Dq Li YES .
545.It Va daily_scrub_zfs_enable
546.Pq Vt bool
547Set to
548.Dq Li YES
549if you want to run a zfs scrub periodically.
550.It Va daily_scrub_zfs_pools
551.Pq Vt str
552A space separated list of names of zfs pools to scrub.
553If the list is empty or not set, all zfs pools are scrubbed.
554.It Va daily_scrub_zfs_default_threshold
555.Pq Vt int
556Number of days between a scrub if no pool-specific threshold is set.
557If not set, the default value is 35, corresponding to 5 weeks.
558.It Va daily_scrub_zfs_ Ns Ao Ar poolname Ac Ns Va _threshold
559.Pq Vt int
560The same as
561.Va daily_scrub_zfs_default_threshold
562but specific to the pool
563.Ao Ar poolname Ac Ns .
564.It Va daily_local
565.Pq Vt str
566Set to a list of extra scripts that should be run after all other
567daily scripts.
568All scripts must be absolute path names.
569.El
570.Pp
571The following variables are used by the standard scripts that reside in
572.Pa /etc/periodic/weekly :
573.Bl -tag -offset 4n -width 2n
574.It Va weekly_locate_enable
575.Pq Vt bool
576Set to
577.Dq Li YES
578if you want to run
579.Pa /usr/libexec/locate.updatedb .
580This script is run using
581.Nm nice Fl 5
582as user
583.Dq Li nobody ,
584and generates the table used by the
585.Xr locate 1
586command.
587.It Va weekly_whatis_enable
588.Pq Vt bool
589Set to
590.Dq Li YES
591if you want to run
592.Pa /usr/libexec/makewhatis.local .
593This script regenerates the database used by the
594.Xr apropos 1
595command.
596.It Va weekly_noid_enable
597.Pq Vt bool
598Set to
599.Dq Li YES
600if you want to locate orphaned files on the system.
601An orphaned file is one with an invalid owner or group.
602.It Va weekly_noid_dirs
603.Pq Vt str
604A list of directories under which orphaned files are searched for.
605This would usually be set to
606.Pa / .
607.It Va weekly_status_security_enable
608.Pq Vt bool
609Weekly counterpart of
610.Va daily_status_security_enable .
611.It Va weekly_status_security_inline
612.Pq Vt bool
613Weekly counterpart of
614.Va daily_status_security_inline .
615.It Va weekly_status_security_output
616.Pq Vt str
617Weekly counterpart of
618.Va daily_status_security_output .
619.It Va weekly_status_pkg_enable
620.Pq Vt bool
621Set to
622.Dq Li YES
623if you want to use
624.Xr pkg-version 8
625to list installed packages which are out of date.
626.It Va pkg_version
627.Pq Vt str
628When
629.Va weekly_status_pkg_enable
630is set to
631.Dq Li YES ,
632this variable specifies the program that is used to determine the out of
633date packages.
634If unset, the
635.Xr pkg-version 8
636program is used.
637As an example, this variable might be set to
638.Dq Li portversion
639if the
640.Pa ports/sysutils/portupgrade
641port has been installed.
642.It Va pkg_version_index
643.Pq Vt str
644This variable specifies the
645.Pa INDEX
646file from
647.Pa /usr/ports
648that should be used by
649.Xr pkg-version 8 .
650Because the dependency tree may be substantially different between versions of
651.Fx ,
652there may be more than one
653.Pa INDEX
654file in
655.Pa /usr/ports .
656.Pp
657Note, if the
658.Va pkg_version
659variable is set to
660.Dq Li portversion ,
661it will also be necessary to arrange that the correct
662.Pa INDEX
663file is specified
664using environment variables and that
665.Va pkg_version_index
666is cleared in
667.Pa /etc/periodic.conf
668.Pq Dq Li pkg_version_index= .
669.It Va weekly_local
670.Pq Vt str
671Set to a list of extra scripts that should be run after all other
672weekly scripts.
673All scripts must be absolute path names.
674.El
675.Pp
676The following variables are used by the standard scripts that reside in
677.Pa /etc/periodic/monthly :
678.Bl -tag -offset 4n -width 2n
679.It Va monthly_accounting_enable
680.Pq Vt bool
681Set to
682.Dq Li YES
683if you want to do login accounting using the
684.Xr ac 8
685command.
686.It Va monthly_status_security_enable
687.Pq Vt bool
688Monthly counterpart of
689.Va daily_status_security_enable .
690.It Va monthly_status_security_inline
691.Pq Vt bool
692Monthly counterpart of
693.Va daily_status_security_inline .
694.It Va monthly_status_security_output
695.Pq Vt str
696Monthly counterpart of
697.Va daily_status_security_output .
698.It Va monthly_local
699.Pq Vt str
700Set to a list of extra scripts that should be run after all other
701monthly scripts.
702All scripts must be absolute path names.
703.El
704.Pp
705The following variables are used by the standard scripts that reside in
706.Pa /etc/periodic/security .
707Those scripts are usually run from daily
708.Pq Va daily_status_security_enable ,
709weekly
710.Pq Va weekly_status_security_enable ,
711and monthly
712.Pq Va monthly_status_security_enable
713periodic hooks.
714The
715.Va ..._period
716of each script can be configured as
717.Dq daily ,
718.Dq weekly ,
719.Dq monthly
720or
721.Dq NO .
722Note that when periodic security scripts are run from
723.Xr crontab 5 ,
724they will be always run unless their
725.Va ..._enable
726or
727.Va ..._period
728variable is set to
729.Dq NO .
730.Bl -tag -offset 4n -width 2n
731.It Va security_status_diff_flags
732.Pq Vt str
733Set to the arguments to pass to the
734.Xr diff 1
735utility when generating differences.
736The default is
737.Fl b u .
738.It Va security_status_chksetuid_enable
739.Pq Vt bool
740Set to
741.Dq Li YES
742to compare the modes and modification times of setuid executables with
743the previous day's values.
744.It Va security_status_chksetuid_period
745.Pq Vt str
746Set to either
747.Dq Li daily ,
748.Dq Li weekly ,
749.Dq Li monthly
750or
751.Dq Li NO .
752.It Va security_status_chkportsum_enable
753.Pq Vt bool
754Set to
755.Dq Li YES
756to verify checksums of all installed packages against the known checksums in
757.Pa /var/db/pkg .
758.It Va security_status_chkportsum_period
759.Pq Vt str
760Set to either
761.Dq Li daily ,
762.Dq Li weekly ,
763.Dq Li monthly
764or
765.Dq Li NO .
766.It Va security_status_neggrpperm_enable
767.Pq Vt bool
768Set to
769.Dq Li YES
770to check for files where the group of a file has less permissions than
771the world at large.
772When users are in more than 14 supplemental groups these negative
773permissions may not be enforced via NFS shares.
774.It Va security_status_neggrpperm_period
775.Pq Vt str
776Set to either
777.Dq Li daily ,
778.Dq Li weekly ,
779.Dq Li monthly
780or
781.Dq Li NO .
782.It Va security_status_chkmounts_enable
783.Pq Vt bool
784Set to
785.Dq Li YES
786to check for changes mounted file systems to the previous day's values.
787.It Va security_status_chkmounts_period
788.Pq Vt str
789Set to either
790.Dq Li daily ,
791.Dq Li weekly ,
792.Dq Li monthly
793or
794.Dq Li NO .
795.It Va security_status_noamd
796.Pq Vt bool
797Set to
798.Dq Li YES
799if you want to ignore
800.Xr amd 8
801mounts when comparing against yesterday's file system mounts in the
802.Va security_status_chkmounts_enable
803check.
804.It Va security_status_chkuid0_enable
805.Pq Vt bool
806Set to
807.Dq Li YES
808to check
809.Pa /etc/master.passwd
810for accounts with UID 0.
811.It Va security_status_chkuid0_period
812.Pq Vt str
813Set to either
814.Dq Li daily ,
815.Dq Li weekly ,
816.Dq Li monthly
817or
818.Dq Li NO .
819.It Va security_status_passwdless_enable
820.Pq Vt bool
821Set to
822.Dq Li YES
823to check
824.Pa /etc/master.passwd
825for accounts with empty passwords.
826.It Va security_status_passwdless_period
827.Pq Vt str
828Set to either
829.Dq Li daily ,
830.Dq Li weekly ,
831.Dq Li monthly
832or
833.Dq Li NO .
834.It Va security_status_logincheck_enable
835.Pq Vt bool
836Set to
837.Dq Li YES
838to check
839.Pa /etc/login.conf
840ownership, see
841.Xr login.conf 5
842for more information.
843.It Va security_status_logincheck_period
844.Pq Vt str
845Set to either
846.Dq Li daily ,
847.Dq Li weekly ,
848.Dq Li monthly
849or
850.Dq Li NO .
851.It Va security_status_ipfwdenied_enable
852.Pq Vt bool
853Set to
854.Dq Li YES
855to show log entries for packets denied by
856.Xr ipfw 8
857since yesterday's check.
858.It Va security_status_ipfwdenied_period
859.Pq Vt str
860Set to either
861.Dq Li daily ,
862.Dq Li weekly ,
863.Dq Li monthly
864or
865.Dq Li NO .
866.It Va security_status_ipfdenied_enable
867.Pq Vt bool
868Set to
869.Dq Li YES
870to show log entries for packets denied by
871.Xr ipf 8
872since yesterday's check.
873.It Va security_status_ipfdenied_period
874.Pq Vt str
875Set to either
876.Dq Li daily ,
877.Dq Li weekly ,
878.Dq Li monthly
879or
880.Dq Li NO .
881.It Va security_status_pfdenied_enable
882.Pq Vt bool
883Set to
884.Dq Li YES
885to show log entries for packets denied by
886.Xr pf 4
887since yesterday's check.
888.It Va security_status_pfdenied_period
889.Pq Vt str
890Set to either
891.Dq Li daily ,
892.Dq Li weekly ,
893.Dq Li monthly
894or
895.Dq Li NO .
896.It Va security_status_ipfwlimit_enable
897.Pq Vt bool
898Set to
899.Dq Li YES
900to display
901.Xr ipfw 8
902rules that have reached their verbosity limit.
903.It Va security_status_ipfwlimit_period
904.Pq Vt str
905Set to either
906.Dq Li daily ,
907.Dq Li weekly ,
908.Dq Li monthly
909or
910.Dq Li NO .
911.It Va security_status_kernelmsg_enable
912.Pq Vt bool
913Set to
914.Dq Li YES
915to show new
916.Xr dmesg 8
917entries since yesterday's check.
918.It Va security_status_kernelmsg_period
919.Pq Vt str
920Set to either
921.Dq Li daily ,
922.Dq Li weekly ,
923.Dq Li monthly
924or
925.Dq Li NO .
926.It Va security_status_loginfail_enable
927.Pq Vt bool
928Set to
929.Dq Li YES
930to display failed logins from
931.Pa /var/log/messages
932in the previous day.
933.It Va security_status_loginfail_period
934.Pq Vt str
935Set to either
936.Dq Li daily ,
937.Dq Li weekly ,
938.Dq Li monthly
939or
940.Dq Li NO .
941.It Va security_status_tcpwrap_enable
942.Pq Vt bool
943Set to
944.Dq Li YES
945to display connections denied by tcpwrappers (see
946.Xr hosts_access 5 )
947from
948.Pa /var/log/messages
949during the previous day.
950.It Va security_status_tcpwrap_period
951.Pq Vt str
952Set to either
953.Dq Li daily ,
954.Dq Li weekly ,
955.Dq Li monthly
956or
957.Dq Li NO .
958.El
959.Sh FILES
960.Bl -tag -width ".Pa /etc/defaults/periodic.conf"
961.It Pa /etc/defaults/periodic.conf
962The default configuration file.
963This file contains all default variables and values.
964.It Pa /etc/periodic.conf
965The usual system specific variable override file.
966.It Pa /etc/periodic.conf.local
967An additional override file, useful when
968.Pa /etc/periodic.conf
969is shared or distributed.
970.El
971.Sh SEE ALSO
972.Xr apropos 1 ,
973.Xr calendar 1 ,
974.Xr df 1 ,
975.Xr diff 1 ,
976.Xr gzip 1 ,
977.Xr locate 1 ,
978.Xr man 1 ,
979.Xr msgs 1 ,
980.Xr netstat 1 ,
981.Xr nice 1 ,
982.Xr login.conf 5 ,
983.Xr rc.conf 5 ,
984.Xr ac 8 ,
985.Xr chkgrp 8 ,
986.Xr dump 8 ,
987.Xr newsyslog 8 ,
988.Xr periodic 8 ,
989.Xr pkg-version 8 ,
990.Xr sendmail 8
991.Sh HISTORY
992The
993.Nm
994file appeared in
995.Fx 4.1 .
996.Sh AUTHORS
997.An Brian Somers Aq Mt brian@Awfulhak.org
998