]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man5/periodic.conf.5
Fix various typos in manual pages.
[FreeBSD/FreeBSD.git] / share / man / man5 / periodic.conf.5
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 February 7, 2012
29 .Dt PERIODIC.CONF 5
30 .Os
31 .Sh NAME
32 .Nm periodic.conf
33 .Nd periodic job configuration information
34 .Sh DESCRIPTION
35 The file
36 .Nm
37 contains a description of how daily, weekly and monthly system maintenance
38 jobs should run.
39 It resides in the
40 .Pa /etc/defaults
41 directory and parts may be overridden by a file of the same name in
42 .Pa /etc ,
43 which itself may be overridden by the
44 .Pa /etc/periodic.conf.local
45 file.
46 .Pp
47 The
48 .Nm
49 file
50 is actually sourced as a shell script from each of the periodic scripts
51 and is intended to simply provide default configuration variables.
52 .Pp
53 The following variables are used by
54 .Xr periodic 8
55 itself:
56 .Bl -tag -offset 4n -width 2n
57 .It Va local_periodic
58 .Pq Vt str
59 List of directories to search for periodic scripts.
60 This list is always prefixed with
61 .Pa /etc/periodic ,
62 and is only used when an argument to
63 .Xr periodic 8
64 is not an absolute directory name.
65 .It Ao Ar dir Ac Ns Va _output
66 .Pq Vt path No or Vt list
67 What to do with the output of the scripts executed from
68 the directory
69 .Ar dir .
70 If this variable is set to an absolute path name, output is logged to
71 that file, otherwise it is taken as one or more space separated email
72 addresses and mailed to those users.
73 If this variable is not set or is empty, output is sent to standard output.
74 .Pp
75 For an unattended machine, suitable values for
76 .Va daily_output ,
77 .Va weekly_output ,
78 and
79 .Va monthly_output
80 might be
81 .Dq Li /var/log/daily.log ,
82 .Dq Li /var/log/weekly.log ,
83 and
84 .Dq Li /var/log/monthly.log
85 respectively, as
86 .Xr newsyslog 8
87 will 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
92 These variables control whether
93 .Xr periodic 8
94 will mask the output of the executed scripts based on their return code
95 (where
96 .Ar dir
97 is the base directory name in which each script resides).
98 If the return code of a script is
99 .Sq 0
100 and
101 .Ao Ar dir Ac Ns Va _show_success
102 is set to
103 .Dq Li NO ,
104 .Xr periodic 8
105 will mask the script's output.
106 If the return code of a script is
107 .Sq 1
108 and
109 .Ao Ar dir Ac Ns Va _show_info
110 is set to
111 .Dq Li NO ,
112 .Xr periodic 8
113 will mask the script's output.
114 If the return code of a script is
115 .Sq 2
116 and
117 .Ao Ar dir Ac Ns Va _show_badconfig
118 is set to
119 .Dq Li NO ,
120 .Xr periodic 8
121 will mask the script's output.
122 If these variables are set to neither
123 .Dq Li YES
124 nor
125 .Dq Li NO ,
126 they default to
127 .Dq Li YES ,
128 .Dq Li YES
129 and
130 .Dq Li NO
131 respectively.
132 .Pp
133 Refer to the
134 .Xr periodic 8
135 manual page for how script return codes are interpreted.
136 .El
137 .Pp
138 The following variables are used by the standard scripts that reside in
139 .Pa /etc/periodic/daily :
140 .Bl -tag -offset 4n -width 2n
141 .It Va daily_clean_disks_enable
142 .Pq Vt bool
143 Set to
144 .Dq Li YES
145 if you want to remove all files matching
146 .Va daily_clean_disks_files
147 daily.
148 .It Va daily_clean_disks_files
149 .Pq Vt str
150 Set to a list of file names to match.
151 Wild cards are permitted.
152 .It Va daily_clean_disks_days
153 .Pq Vt num
154 When
155 .Va daily_clean_disks_enable
156 is set to
157 .Dq Li YES ,
158 this must also be set to the number of days old that a file's access
159 and modification times must be before it is deleted.
160 .It Va daily_clean_disks_verbose
161 .Pq Vt bool
162 Set to
163 .Dq Li YES
164 if you want the removed files to be reported in your daily output.
165 .It Va daily_clean_tmps_enable
166 .Pq Vt bool
167 Set to
168 .Dq Li YES
169 if you want to clear temporary directories daily.
170 .It Va daily_clean_tmps_dirs
171 .Pq Vt str
172 Set to the list of directories to clear if
173 .Va daily_clean_tmps_enable
174 is set to
175 .Dq Li YES .
176 .It Va daily_clean_tmps_days
177 .Pq Vt num
178 When
179 .Va daily_clean_tmps_enable
180 is set, this must also be set to the number of days old that a file's access
181 and modification times must be before it is deleted.
182 .It Va daily_clean_tmps_ignore
183 .Pq Vt str
184 Set to the list of files that should not be deleted when
185 .Va daily_clean_tmps_enable
186 is set to
187 .Dq Li YES .
188 Wild card characters are permitted.
189 .It Va daily_clean_tmps_verbose
190 .Pq Vt bool
191 Set to
192 .Dq Li YES
193 if you want the removed files to be reported in your daily output.
194 .It Va daily_clean_preserve_enable
195 .Pq Vt bool
196 Set to
197 .Dq Li YES
198 if you wish to remove old files from
199 .Pa /var/preserve .
200 .It Va daily_clean_preserve_days
201 .Pq Vt num
202 Set to the number of days that files must not have been modified before
203 they are deleted.
204 .It Va daily_clean_preserve_verbose
205 .Pq Vt bool
206 Set to
207 .Dq Li YES
208 if you want the removed files to be reported in your daily output.
209 .It Va daily_clean_msgs_enable
210 .Pq Vt bool
211 Set to
212 .Dq Li YES
213 if you wish old system messages to be purged.
214 .It Va daily_clean_msgs_days
215 .Pq Vt num
216 Set to the number of days that files must not have been modified before
217 they are deleted.
218 If this variable is left blank, the
219 .Xr msgs 1
220 default is used.
221 .It Va daily_clean_rwho_enable
222 .Pq Vt bool
223 Set to
224 .Dq Li YES
225 if you wish old files in
226 .Pa /var/who
227 to be purged.
228 .It Va daily_clean_rwho_days
229 .Pq Vt num
230 Set to the number of days that files must not have been modified before
231 they are deleted.
232 .It Va daily_clean_rwho_verbose
233 .Pq Vt bool
234 Set to
235 .Dq Li YES
236 if you want the removed files to be reported in your daily output.
237 .It Va daily_clean_hoststat_enable
238 .Pq Vt bool
239 Set to
240 .Dq Li YES
241 to run
242 .Nm sendmail Fl bH
243 to automatically purge stale entries from
244 .Xr sendmail 8 Ns 's
245 host status cache.
246 Files will be deleted using the same criteria as
247 .Xr sendmail 8
248 would normally use when determining whether to believe the cached information,
249 as configured in
250 .Pa /etc/mail/sendmail.cf .
251 .It Va daily_backup_passwd_enable
252 .Pq Vt bool
253 Set to
254 .Dq Li YES
255 if you want the
256 .Pa /etc/master.passwd
257 and
258 .Pa /etc/group
259 files backed up and reported on.
260 Reporting consists of checking both files for modifications and running
261 .Xr chkgrp 8
262 on the
263 .Pa group
264 file.
265 .It Va daily_backup_aliases_enable
266 .Pq Vt bool
267 Set to
268 .Dq Li YES
269 if you want the
270 .Pa /etc/mail/aliases
271 file backed up and modifications to be displayed in your daily output.
272 .It Va daily_calendar_enable
273 .Pq Vt bool
274 Set to
275 .Dq Li YES
276 if you want to run
277 .Nm calendar Fl a
278 daily.
279 .It Va daily_accounting_enable
280 .Pq Vt bool
281 Set to
282 .Dq Li YES
283 if you want to rotate your daily accounting files.
284 No rotations are necessary unless
285 .Va accounting_enable
286 is enabled in
287 .Xr rc.conf 5 .
288 .It Va daily_accounting_compress
289 .Pq Vt bool
290 Set to
291 .Dq Li YES
292 if you want your daily accounting files to be compressed using
293 .Xr gzip 1 .
294 .It Va daily_accounting_save
295 .Pq Vt num
296 When
297 .Va daily_accounting_enable
298 is set, this may also be set to the number of daily accounting files that are
299 to be saved.
300 The default is
301 .Dq Li 3 .
302 .It Va daily_accounting_flags
303 .Pq Vt str
304 Set to the arguments to pass to the
305 .Xr sa 8
306 utility (in addition to
307 .Fl s )
308 when
309 .Va daily_accounting_enable
310 is set to
311 .Dq Li YES .
312 The default is
313 .Fl q .
314 .It Va daily_news_expire_enable
315 .Pq Vt bool
316 Set to
317 .Dq Li YES
318 if you want to run
319 .Pa /etc/news.expire .
320 .It Va daily_status_disks_enable
321 .Pq Vt bool
322 Set to
323 .Dq Li YES
324 if you want to run
325 .Xr df 1
326 (with the arguments supplied in
327 .Va daily_status_disks_df_flags )
328 and
329 .Nm dump Fl W .
330 .It Va daily_status_disks_df_flags
331 .Pq Vt str
332 Set to the arguments for the
333 .Xr df 1
334 utility when
335 .Va daily_status_disks_enable
336 is set to
337 .Dq Li YES .
338 .It Va daily_status_zfs_enable
339 .Pq Vt bool
340 Set to
341 .Dq Li YES
342 if you want to run
343 .Nm zpool Cm status
344 on your
345 .Xr zfs 8
346 pools.
347 .It Va daily_status_zfs_zpool_list_enable
348 .Pq Vt bool
349 Set to
350 .Dq Li YES
351 if you want to run
352 .Nm zpool Cm list
353 on your
354 .Xr zfs 8
355 pools.
356 Requires
357 .Va daily_status_zfs_enable
358 to be set to
359 .Li YES .
360 .It Va daily_status_ata_raid_enable
361 .Pq Vt bool
362 Set to
363 .Dq Li YES
364 if you want to run
365 .Nm atacontrol Cm status
366 on your
367 .Xr ataraid 4
368 arrays.
369 .It Va daily_status_gmirror_enable
370 .Pq Vt bool
371 Set to
372 .Dq Li YES
373 if you want to run
374 .Nm gmirror Cm status
375 on your
376 .Xr gmirror 8
377 devices.
378 .It Va daily_status_graid3_enable
379 .Pq Vt bool
380 Set to
381 .Dq Li YES
382 if you want to run
383 .Nm graid3 Cm status
384 on your
385 .Xr graid3 8
386 devices.
387 .It Va daily_status_gstripe_enable
388 .Pq Vt bool
389 Set to
390 .Dq Li YES
391 if you want to run
392 .Nm gstripe Cm status
393 on your
394 .Xr gstripe 8
395 devices.
396 .It Va daily_status_gconcat_enable
397 .Pq Vt bool
398 Set to
399 .Dq Li YES
400 if you want to run
401 .Nm gconcat Cm status
402 on your
403 .Xr gconcat 8
404 devices.
405 .It Va daily_status_network_enable
406 .Pq Vt bool
407 Set to
408 .Dq Li YES
409 if you want to run
410 .Nm netstat Fl i .
411 .It Va daily_status_network_usedns
412 .Pq Vt bool
413 Set to
414 .Dq Li YES
415 if you want to run
416 .Xr netstat 1
417 without the
418 .Fl n
419 option (to do DNS lookups).
420 .It Va daily_status_rwho_enable
421 .Pq Vt bool
422 Set to
423 .Dq Li YES
424 if you want to run
425 .Xr uptime 1
426 (or
427 .Xr ruptime 1
428 if
429 .Va rwhod_enable
430 is set to
431 .Dq Li YES
432 in
433 .Pa /etc/rc.conf ) .
434 .It Va daily_status_mailq_enable
435 .Pq Vt bool
436 Set to
437 .Dq Li YES
438 if you want to run
439 .Xr mailq 1 .
440 .It Va daily_status_mailq_shorten
441 .Pq Vt bool
442 Set to
443 .Dq Li YES
444 if you want to shorten the
445 .Xr mailq 1
446 output when
447 .Va daily_status_mailq_enable
448 is set to
449 .Dq Li YES .
450 .It Va daily_status_include_submit_mailq
451 .Pq Vt bool
452 Set to
453 .Dq Li YES
454 if you also want to run
455 .Xr mailq 1
456 on the submit mail queue when
457 .Va daily_status_mailq_enable
458 is set to
459 .Dq Li YES .
460 This may not work with MTAs other than
461 .Xr sendmail 8 .
462 .It Va daily_status_security_enable
463 .Pq Vt bool
464 Set to
465 .Dq Li YES
466 if you want to run the security check.
467 The security check is another set of
468 .Xr periodic 8
469 scripts.
470 The system defaults are in
471 .Pa /etc/periodic/security .
472 Local scripts should be placed in
473 .Pa /usr/local/etc/periodic/security .
474 See the
475 .Xr periodic 8
476 manual page for more information.
477 .It Va daily_status_security_inline
478 .Pq Vt bool
479 Set to
480 .Dq Li YES
481 if you want the security check output inline.
482 The default is to either mail or log the output according to the value of
483 .Va daily_status_security_output .
484 .It Va daily_status_security_output
485 .Pq Vt str
486 Where to send the output of the security check if
487 .Va daily_status_security_inline
488 is set to
489 .Dq Li NO .
490 This variable behaves in the same way as the
491 .Va *_output
492 variables above, namely it can be set either to one or more email addresses
493 or to an absolute file name.
494 .It Va daily_status_security_diff_flags
495 .Pq Vt str
496 Set to the arguments to pass to the
497 .Xr diff 1
498 utility when generating differences.
499 The default is
500 .Fl b u .
501 .It Va daily_status_security_chksetuid_enable
502 .Pq Vt bool
503 Set to
504 .Dq Li YES
505 to compare the modes and modification times of setuid executables with
506 the previous day's values.
507 .It Va daily_status_security_neggrpperm_enable
508 .Pq Vt bool
509 Set to
510 .Dq Li YES
511 to check for files where the group of a file has less permissions than
512 the world at large.
513 When users are in more than 14 supplemental groups these negative
514 permissions may not be enforced via NFS shares.
515 .It Va daily_status_security_chkmounts_enable
516 .Pq Vt bool
517 Set to
518 .Dq Li YES
519 to check for changes mounted file systems to the previous day's values.
520 .It Va daily_status_security_noamd
521 .Pq Vt bool
522 Set to
523 .Dq Li YES
524 if you want to ignore
525 .Xr amd 8
526 mounts when comparing against yesterday's file system mounts in the
527 .Va daily_status_security_chkmounts_enable
528 check.
529 .It Va daily_status_security_chkuid0_enable
530 .Pq Vt bool
531 Set to
532 .Dq Li YES
533 to check
534 .Pa /etc/master.passwd
535 for accounts with UID 0.
536 .It Va daily_status_security_passwdless_enable
537 .Pq Vt bool
538 Set to
539 .Dq Li YES
540 to check
541 .Pa /etc/master.passwd
542 for accounts with empty passwords.
543 .It Va daily_status_security_logincheck_enable
544 .Pq Vt bool
545 Set to
546 .Dq Li YES
547 to check
548 .Pa /etc/login.conf
549 ownership, see
550 .Xr login.conf 5
551 for more information.
552 .It Va daily_status_security_ipfwdenied_enable
553 .Pq Vt bool
554 Set to
555 .Dq Li YES
556 to show log entries for packets denied by
557 .Xr ipfw 8
558 since yesterday's check.
559 .It Va daily_status_security_ipfdenied_enable
560 .Pq Vt bool
561 Set to
562 .Dq Li YES
563 to show log entries for packets denied by
564 .Xr ipf 8
565 since yesterday's check.
566 .It Va daily_status_security_pfdenied_enable
567 .Pq Vt bool
568 Set to
569 .Dq Li YES
570 to show log entries for packets denied by
571 .Xr pf 4
572 since yesterday's check.
573 .It Va daily_status_security_ipfwlimit_enable
574 .Pq Vt bool
575 Set to
576 .Dq Li YES
577 to display
578 .Xr ipfw 8
579 rules that have reached their verbosity limit.
580 .It Va daily_status_security_kernelmsg_enable
581 .Pq Vt bool
582 Set to
583 .Dq Li YES
584 to show new
585 .Xr dmesg 8
586 entries since yesterday's check.
587 .It Va daily_status_security_loginfail_enable
588 .Pq Vt bool
589 Set to
590 .Dq Li YES
591 to display failed logins from
592 .Pa /var/log/messages
593 in the previous day.
594 .It Va daily_status_security_tcpwrap_enable
595 .Pq Vt bool
596 Set to
597 .Dq Li YES
598 to display connections denied by tcpwrappers (see
599 .Xr hosts_access 5 )
600 from
601 .Pa /var/log/messages
602 during the previous day.
603 .It Va daily_status_mail_rejects_enable
604 .Pq Vt bool
605 Set to
606 .Dq Li YES
607 if you want to summarise mail rejections logged to
608 .Pa /var/log/maillog
609 for the previous day.
610 .It Va daily_status_mail_rejects_logs
611 .Pq Vt num
612 Set to the number of maillog files that should be checked
613 for yesterday's mail rejects.
614 .It Va daily_status_named_enable
615 .Pq Vt bool
616 Set to
617 .Dq Li YES
618 if you want to summarise denied zone transfers (AXFR and IXFR)
619 for the previous day.
620 .It Va daily_status_named_usedns
621 .Pq Vt bool
622 Set to
623 .Dq Li YES
624 if you want to enable reverse DNS lookups.
625 .It Va daily_status_ntpd
626 .Pq Vt bool
627 Set to
628 .Dq Li YES
629 if you want to enable NTP status check.
630 .It Va daily_queuerun_enable
631 .Pq Vt bool
632 Set to
633 .Dq Li YES
634 if you want to manually run the mail queue at least once a day.
635 .It Va daily_submit_queuerun
636 .Pq Vt bool
637 Set to
638 .Dq Li YES
639 if you also want to manually run the submit mail queue at least once a day
640 when
641 .Va daily_queuerun_enable
642 is set to
643 .Dq Li YES .
644 .It Va daily_scrub_zfs_enable
645 .Pq Vt bool
646 Set to
647 .Dq Li YES
648 if you want to run a zfs scrub periodically.
649 .It Va daily_scrub_zfs_pools
650 .Pq Vt str
651 A space separated list of names of zfs pools to scrub.
652 If the list is empty or not set, all zfs pools are scrubbed.
653 .It Va daily_scrub_zfs_default_threshold
654 .Pq Vt int
655 Number of days between a scrub if no pool-specific threshold is set.
656 If not set, the default value is 35, corresponding to 5 weeks.
657 .It Va daily_scrub_zfs_ Ns Ao Ar poolname Ac Ns Va _threshold
658 .Pq Vt int
659 The same as
660 .Va daily_scrub_zfs_default_threshold
661 but specific to the pool
662 .Ao Ar poolname Ac Ns .
663 .It Va daily_local
664 .Pq Vt str
665 Set to a list of extra scripts that should be run after all other
666 daily scripts.
667 All scripts must be absolute path names.
668 .El
669 .Pp
670 The following variables are used by the standard scripts that reside in
671 .Pa /etc/periodic/weekly :
672 .Bl -tag -offset 4n -width 2n
673 .It Va weekly_locate_enable
674 .Pq Vt bool
675 Set to
676 .Dq Li YES
677 if you want to run
678 .Pa /usr/libexec/locate.updatedb .
679 This script is run using
680 .Nm nice Fl 5
681 as user
682 .Dq Li nobody ,
683 and generates the table used by the
684 .Xr locate 1
685 command.
686 .It Va weekly_whatis_enable
687 .Pq Vt bool
688 Set to
689 .Dq Li YES
690 if you want to run
691 .Pa /usr/libexec/makewhatis.local .
692 This script regenerates the database used by the
693 .Xr apropos 1
694 command.
695 .It Va weekly_catman_enable
696 .Pq Vt bool
697 Set to
698 .Dq Li YES
699 if you want to run
700 .Pa /usr/libexec/catman.local .
701 This script processes all out of date manual pages, speeding up the
702 .Xr man 1
703 command at the expense of disk space.
704 .It Va weekly_noid_enable
705 .Pq Vt bool
706 Set to
707 .Dq Li YES
708 if you want to locate orphaned files on the system.
709 An orphaned file is one with an invalid owner or group.
710 .It Va weekly_noid_dirs
711 .Pq Vt str
712 A list of directories under which orphaned files are searched for.
713 This would usually be set to
714 .Pa / .
715 .It Va weekly_status_pkg_enable
716 .Pq Vt bool
717 Set to
718 .Dq Li YES
719 if you want to use
720 .Xr pkg_version 1
721 to list installed packages which are out of date.
722 .It Va pkg_version
723 .Pq Vt str
724 When
725 .Va weekly_status_pkg_enable
726 is set to
727 .Dq Li YES ,
728 this variable specifies the program that is used to determine the out of
729 date packages.
730 If unset, the
731 .Xr pkg_version 1
732 program is used.
733 As an example, this variable might be set to
734 .Dq Li portversion
735 if the
736 .Pa ports/sysutils/portupgrade
737 port has been installed.
738 .It Va pkg_version_index
739 .Pq Vt str
740 This variable specifies the
741 .Pa INDEX
742 file from
743 .Pa /usr/ports
744 that should be used by
745 .Xr pkg_version 1 .
746 Because the dependency tree may be substantially different between versions of
747 .Fx ,
748 there may be more than one
749 .Pa INDEX
750 file in
751 .Pa /usr/ports .
752 .Pp
753 Note, if the
754 .Va pkg_version
755 variable is set to
756 .Dq Li portversion ,
757 it will also be necessary to arrange that the correct
758 .Pa INDEX
759 file is specified
760 using environment variables and that
761 .Va pkg_version_index
762 is cleared in
763 .Pa /etc/periodic.conf
764 .Pq Dq Li pkg_version_index= .
765 .It Va weekly_local
766 .Pq Vt str
767 Set to a list of extra scripts that should be run after all other
768 weekly scripts.
769 All scripts must be absolute path names.
770 .El
771 .Pp
772 The following variables are used by the standard scripts that reside in
773 .Pa /etc/periodic/monthly :
774 .Bl -tag -offset 4n -width 2n
775 .It Va monthly_accounting_enable
776 .Pq Vt bool
777 Set to
778 .Dq Li YES
779 if you want to do login accounting using the
780 .Xr ac 8
781 command.
782 .It Va monthly_local
783 .Pq Vt str
784 Set to a list of extra scripts that should be run after all other
785 monthly scripts.
786 All scripts must be absolute path names.
787 .El
788 .Sh FILES
789 .Bl -tag -width ".Pa /etc/defaults/periodic.conf"
790 .It Pa /etc/defaults/periodic.conf
791 The default configuration file.
792 This file contains all default variables and values.
793 .It Pa /etc/periodic.conf
794 The usual system specific variable override file.
795 .It Pa /etc/periodic.conf.local
796 An additional override file, useful when
797 .Pa /etc/periodic.conf
798 is shared or distributed.
799 .El
800 .Sh SEE ALSO
801 .Xr apropos 1 ,
802 .Xr calendar 1 ,
803 .Xr df 1 ,
804 .Xr diff 1 ,
805 .Xr gzip 1 ,
806 .Xr locate 1 ,
807 .Xr man 1 ,
808 .Xr msgs 1 ,
809 .Xr netstat 1 ,
810 .Xr nice 1 ,
811 .Xr pkg_version 1 ,
812 .Xr login.conf 5 ,
813 .Xr rc.conf 5 ,
814 .Xr ac 8 ,
815 .Xr chkgrp 8 ,
816 .Xr dump 8 ,
817 .Xr newsyslog 8 ,
818 .Xr periodic 8 ,
819 .Xr sendmail 8
820 .Sh HISTORY
821 The
822 .Nm
823 file appeared in
824 .Fx 4.1 .
825 .Sh AUTHORS
826 .An Brian Somers Aq brian@Awfulhak.org