periodic.conf revision 254974
161981Sbrian#!/bin/sh
261981Sbrian#
361981Sbrian# This is defaults/periodic.conf - a file full of useful variables that
461981Sbrian# you can set to change the default behaviour of periodic jobs on your
561981Sbrian# system.  You should not edit this file!  Put any overrides into one of the
661981Sbrian# $periodic_conf_files instead and you will be able to update these defaults
761981Sbrian# later without spamming your local configuration information.
861981Sbrian#
961981Sbrian# The $periodic_conf_files files should only contain values which override
1061981Sbrian# values set in this file.  This eases the upgrade path when defaults
1161981Sbrian# are changed and new features are added.
1261981Sbrian#
13140771Skeramida# For a more detailed explanation of all the periodic.conf variables, please
14140771Skeramida# refer to the periodic.conf(5) manual page.
15140771Skeramida#
1661981Sbrian# $FreeBSD: head/etc/defaults/periodic.conf 254974 2013-08-27 21:20:28Z jlh $
1761981Sbrian#
1861981Sbrian
1961981Sbrian# What files override these defaults ?
2061981Sbrianperiodic_conf_files="/etc/periodic.conf /etc/periodic.conf.local"
2161981Sbrian
2261981Sbrian# periodic script dirs
23170085Sdougblocal_periodic="/usr/local/etc/periodic"
2461981Sbrian
2561981Sbrian
2661981Sbrian# Daily options
2761981Sbrian
2865843Sbrian# These options are used by periodic(8) itself to determine what to do
2965843Sbrian# with the output of the sub-programs that are run, and where to send
3065843Sbrian# that output.  $daily_output might be set to /var/log/daily.log if you
3165843Sbrian# wish to log the daily output and have the files rotated by newsyslog(8)
3265843Sbrian#
3365843Sbriandaily_output="root"					# user or /file
3465843Sbriandaily_show_success="YES"				# scripts returning 0
3565843Sbriandaily_show_info="YES"					# scripts returning 1
3665843Sbriandaily_show_badconfig="NO"				# scripts returning 2
3765843Sbrian
3861981Sbrian# 100.clean-disks
3961981Sbriandaily_clean_disks_enable="NO"				# Delete files daily
4061981Sbriandaily_clean_disks_files="[#,]* .#* a.out *.core *.CKP .emacs_[0-9]*"
4161981Sbriandaily_clean_disks_days=3				# If older than this
4261981Sbriandaily_clean_disks_verbose="YES"				# Mention files deleted
4361981Sbrian
4461981Sbrian# 110.clean-tmps
4561981Sbriandaily_clean_tmps_enable="NO"				# Delete stuff daily
4661981Sbriandaily_clean_tmps_dirs="/tmp"				# Delete under here
4761981Sbriandaily_clean_tmps_days="3"				# If not accessed for
48174028Sjhbdaily_clean_tmps_ignore=".X*-lock .X11-unix .ICE-unix .font-unix .XIM-unix"
49205509Sjoergdaily_clean_tmps_ignore="$daily_clean_tmps_ignore quota.user quota.group .snap"
50236284Seadlerdaily_clean_tmps_ignore="$daily_clean_tmps_ignore .sujournal"
51174028Sjhb							# Don't delete these
5261981Sbriandaily_clean_tmps_verbose="YES"				# Mention files deleted
5361981Sbrian
5461981Sbrian# 120.clean-preserve
5561981Sbriandaily_clean_preserve_enable="YES"			# Delete files daily
5661981Sbriandaily_clean_preserve_days=7				# If not modified for
5761981Sbriandaily_clean_preserve_verbose="YES"			# Mention files deleted
5861981Sbrian
5961981Sbrian# 130.clean-msgs
6061981Sbriandaily_clean_msgs_enable="YES"				# Delete msgs daily
6161981Sbriandaily_clean_msgs_days=					# If not modified for
6261981Sbrian
6361981Sbrian# 140.clean-rwho
6461981Sbriandaily_clean_rwho_enable="YES"				# Delete rwho daily
6561981Sbriandaily_clean_rwho_days=7					# If not modified for
6661981Sbriandaily_clean_rwho_verbose="YES"				# Mention files deleted
6761981Sbrian
6861981Sbrian# 150.clean-hoststat
69108959Swollmandaily_clean_hoststat_enable="YES"			# Purge sendmail host
70108959Swollman							# status cache daily
7161981Sbrian
7261981Sbrian# 200.backup-passwd
7361981Sbriandaily_backup_passwd_enable="YES"			# Backup passwd & group
7461981Sbrian
7561981Sbrian# 210.backup-aliases
7661981Sbriandaily_backup_aliases_enable="YES"			# Backup mail aliases
7761981Sbrian
78220020Sdougb# 220.backup-pkgdb
79220020Sdougbdaily_backup_pkgdb_enable="YES"				# Backup /var/db/pkg
80220020Sdougbdaily_backup_pkgdb_dir="/var/backups"
81220020Sdougb
8261981Sbrian# 300.calendar
8361981Sbriandaily_calendar_enable="NO"				# Run calendar -a
8461981Sbrian
8561981Sbrian# 310.accounting
8661981Sbriandaily_accounting_enable="YES"				# Rotate acct files
8762054Sbriandaily_accounting_compress="NO"				# Gzip rotated files
8877496Sbriandaily_accounting_flags=-q				# Flags to /usr/sbin/sa
8977492Sbriandaily_accounting_save=3					# How many files to save
9061981Sbrian
9161981Sbrian# 330.news
9261981Sbriandaily_news_expire_enable="YES"				# Run news.expire
9361981Sbrian
9461981Sbrian# 400.status-disks
9561981Sbriandaily_status_disks_enable="YES"				# Check disk status
96155060Smatteodaily_status_disks_df_flags="-l -h"		# df(1) flags for check
9761981Sbrian
98249095Smav# 401.status-graid
99249095Smavdaily_status_graid_enable="NO"				# Check graid(8)
100249095Smav
101168412Spjd# 404.status-zfs
102168412Spjddaily_status_zfs_enable="NO"				# Check ZFS
103231171Sgjbdaily_status_zfs_zpool_list_enable="YES"		# List ZFS pools
104168412Spjd
105154304Swollman# 406.status-gmirror
106154304Swollmandaily_status_gmirror_enable="NO"			# Check gmirror(8)
107154304Swollman
108156216Sbrueffer# 407.status-graid3
109156216Sbruefferdaily_status_graid3_enable="NO" 			# Check graid3(8)
110156216Sbrueffer
111156216Sbrueffer# 408.status-gstripe
112156216Sbruefferdaily_status_gstripe_enable="NO"			# Check gstripe(8)
113156216Sbrueffer
114156216Sbrueffer# 409.status-gconcat
115156216Sbruefferdaily_status_gconcat_enable="NO"			# Check gconcat(8)
116156216Sbrueffer
11761981Sbrian# 420.status-network
11861981Sbriandaily_status_network_enable="YES"			# Check network status
11961981Sbriandaily_status_network_usedns="YES"			# DNS lookups are ok
12061981Sbrian
12161981Sbrian# 430.status-rwho
12261981Sbriandaily_status_rwho_enable="YES"				# Check system status
12361981Sbrian
12461981Sbrian# 440.status-mailq
12561981Sbriandaily_status_mailq_enable="YES"				# Check mail status
12661981Sbriandaily_status_mailq_shorten="NO"				# Shorten output
12794342Sgshapirodaily_status_include_submit_mailq="YES"			# Also submit queue
12861981Sbrian
12961981Sbrian# 450.status-security
13061981Sbriandaily_status_security_enable="YES"			# Security check
131254974Sjlh# See also "Security options" below for more options
132254974Sjlhdaily_status_security_inline="NO"			# Run inline ?
133254974Sjlhdaily_status_security_output="root"			# user or /file
13461981Sbrian
13561981Sbrian# 460.status-mail-rejects
13661981Sbriandaily_status_mail_rejects_enable="YES"			# Check mail rejects
13762274Sbriandaily_status_mail_rejects_logs=3			# How many logs to check
138175153Sddsdaily_status_mail_rejects_shorten="NO"			# Shorten output
13961981Sbrian
14075809Sdirk# 470.status-named
14175809Sdirkdaily_status_named_enable="YES"
14275809Sdirkdaily_status_named_usedns="YES"				# DNS lookups are ok
14375809Sdirk
144169517Smaxim# 480.status-ntpd
145169517Smaximdaily_status_ntpd_enable="NO"				# Check NTP status
146169517Smaxim
147210863Solli# 490.status-pkg-changes
148210863Sollidaily_status_pkg_changes_enable="NO"			# Show package changes
149241788Sumepkg_info="pkg_info"					# Use this program
150210863Solli
15172677Speter# 500.queuerun
15272677Speterdaily_queuerun_enable="YES"				# Run mail queue
15394342Sgshapirodaily_submit_queuerun="YES"				# Also submit queue
15472677Speter
155226471Sse# 800.scrub-zfs
156226471Ssedaily_scrub_zfs_enable="NO"
157226471Ssedaily_scrub_zfs_pools=""			# empty string selects all pools
158226865Sdelphijdaily_scrub_zfs_default_threshold="35"		# days between scrubs
159226865Sdelphij#daily_scrub_zfs_${poolname}_threshold="35"	# pool specific threshold
160226471Sse
16161981Sbrian# 999.local
16261981Sbriandaily_local="/etc/daily.local"				# Local scripts
16361981Sbrian
16461981Sbrian
16587514Scjc# Security options
16687514Scjc
167101607Sfanf# These options are used by the security periodic(8) scripts spawned in
168254974Sjlh# daily and weekly 450.status-security.
169254974Sjlhsecurity_status_logdir="/var/log"			# Directory for logs
170254974Sjlhsecurity_status_diff_flags="-b -u"			# flags for diff output
17187514Scjc
172254974Sjlh# Each of the security_status_*_enable options below can have one of the
173254974Sjlh# following values:
174254974Sjlh# - NO
175254974Sjlh# - daily: only run during the daily security status
176254974Sjlh# - weekly: only run during the weekly security status
177254974Sjlh
17887514Scjc# 100.chksetuid
179254974Sjlhsecurity_status_chksetuid_enable="YES"
180254974Sjlhsecurity_status_chksetuid_period="daily"
18187514Scjc
182215213Sbrooks# 110.neggrpperm
183254974Sjlhsecurity_status_neggrpperm_enable="YES"
184254974Sjlhsecurity_status_neggrpperm_period="daily"
185215213Sbrooks
18687514Scjc# 200.chkmounts
187254974Sjlhsecurity_status_chkmounts_enable="YES"
188254974Sjlhsecurity_status_chkmounts_period="daily"
189254974Sjlh#security_status_chkmounts_ignore="^amd:"		# Don't check matching
19087514Scjc							# FS types
191254974Sjlhsecurity_status_noamd="NO"				# Don't check amd mounts
19287514Scjc
19387514Scjc# 300.chkuid0
194254974Sjlhsecurity_status_chkuid0_enable="YES"
195254974Sjlhsecurity_status_chkuid0_period="daily"
19687514Scjc
19787514Scjc# 400.passwdless
198254974Sjlhsecurity_status_passwdless_enable="YES"
199254974Sjlhsecurity_status_passwdless_period="daily"
20087514Scjc
201161602Strhodes# 410.logincheck
202254974Sjlhsecurity_status_logincheck_enable="YES"
203254974Sjlhsecurity_status_logincheck_period="daily"
204161602Strhodes
205210254Sgabor# 460.chkportsum
206254974Sjlhsecurity_status_chkportsum_enable="NO"		# Check ports w/ wrong checksum
207254974Sjlhsecurity_status_chkportsum_period="daily"
208210254Sgabor
20987514Scjc# 500.ipfwdenied
210254974Sjlhsecurity_status_ipfwdenied_enable="YES"
211254974Sjlhsecurity_status_ipfwdenied_period="daily"
21287514Scjc
213105937Sthomas# 510.ipfdenied
214254974Sjlhsecurity_status_ipfdenied_enable="YES"
215254974Sjlhsecurity_status_ipfdenied_period="daily"
216105937Sthomas
217138061Smlaier# 520.pfdenied
218254974Sjlhsecurity_status_pfdenied_enable="YES"
219254974Sjlhsecurity_status_pfdenied_period="daily"
220138061Smlaier
22187514Scjc# 550.ipfwlimit
222254974Sjlhsecurity_status_ipfwlimit_enable="YES"
223254974Sjlhsecurity_status_ipfwlimit_period="daily"
22487514Scjc
225128473Sdarrenr# 610.ipf6denied
226254974Sjlhsecurity_status_ipf6denied_enable="YES"
227254974Sjlhsecurity_status_ipf6denied_period="daily"
228128473Sdarrenr
22987514Scjc# 700.kernelmsg
230254974Sjlhsecurity_status_kernelmsg_enable="YES"
231254974Sjlhsecurity_status_kernelmsg_period="daily"
23287514Scjc
23387514Scjc# 800.loginfail
234254974Sjlhsecurity_status_loginfail_enable="YES"
235254974Sjlhsecurity_status_loginfail_period="daily"
23687514Scjc
23787514Scjc# 900.tcpwrap
238254974Sjlhsecurity_status_tcpwrap_enable="YES"
239254974Sjlhsecurity_status_tcpwrap_period="daily"
24087514Scjc
24187514Scjc
24261981Sbrian# Weekly options
24361981Sbrian
24465843Sbrian# These options are used by periodic(8) itself to determine what to do
24565843Sbrian# with the output of the sub-programs that are run, and where to send
24665843Sbrian# that output.  $weekly_output might be set to /var/log/weekly.log if you
24765843Sbrian# wish to log the weekly output and have the files rotated by newsyslog(8)
24865843Sbrian#
24965843Sbrianweekly_output="root"					# user or /file
25065843Sbrianweekly_show_success="YES"				# scripts returning 0
25165843Sbrianweekly_show_info="YES"					# scripts returning 1
25265843Sbrianweekly_show_badconfig="NO"				# scripts returning 2
25365843Sbrian
25461981Sbrian# 310.locate
25561981Sbrianweekly_locate_enable="YES"				# Update locate weekly
25661981Sbrian
25761981Sbrian# 320.whatis
25861981Sbrianweekly_whatis_enable="YES"				# Update whatis weekly
25961981Sbrian
26061981Sbrian# 330.catman
26161981Sbrianweekly_catman_enable="NO"				# Preformat man pages
26261981Sbrian
26361981Sbrian# 340.noid
26461981Sbrianweekly_noid_enable="NO"					# Find unowned files
26561981Sbrianweekly_noid_dirs="/"					# Look here
26661981Sbrian
26762206Sbrian# 400.status-pkg
26862155Sbrianweekly_status_pkg_enable="NO"				# Find out-of-date pkgs
269103948Sbrianpkg_version=pkg_version					# Use this program
270241787Sumepkg_version_index=/usr/ports/INDEX-10			# Use this index file
27162155Sbrian
272254974Sjlh# 450.status-security
273254974Sjlhweekly_status_security_enable="YES"			# Security check
274254974Sjlh# See also "Security options" above for more options
275254974Sjlhweekly_status_security_inline="NO"			# Run inline ?
276254974Sjlhweekly_status_security_output="root"			# user or /file
277254974Sjlh
27861981Sbrian# 999.local
27961981Sbrianweekly_local="/etc/weekly.local"			# Local scripts
28061981Sbrian
28161981Sbrian
28261981Sbrian# Monthly options
28361981Sbrian
28465843Sbrian# These options are used by periodic(8) itself to determine what to do
28565843Sbrian# with the output of the sub-programs that are run, and where to send
28665843Sbrian# that output.  $monthly_output might be set to /var/log/monthly.log if you
28765843Sbrian# wish to log the monthly output and have the files rotated by newsyslog(8)
28865843Sbrian#
28965843Sbrianmonthly_output="root"					# user or /file
29065843Sbrianmonthly_show_success="YES"				# scripts returning 0
29165843Sbrianmonthly_show_info="YES"					# scripts returning 1
29265843Sbrianmonthly_show_badconfig="NO"				# scripts returning 2
29365843Sbrian
29461981Sbrian# 200.accounting
29561981Sbrianmonthly_accounting_enable="YES"				# Login accounting
29661981Sbrian
297254974Sjlh# 450.status-security
298254974Sjlhmonthly_status_security_enable="YES"			# Security check
299254974Sjlh# See also "Security options" above for more options
300254974Sjlhmonthly_status_security_inline="NO"			# Run inline ?
301254974Sjlhmonthly_status_security_output="root"			# user or /file
302254974Sjlh
30361981Sbrian# 999.local
30461981Sbrianmonthly_local="/etc/monthly.local"			# Local scripts
30561981Sbrian
30661981Sbrian
30761981Sbrian# Define source_periodic_confs, the mechanism used by /etc/periodic/*/*
30861981Sbrian# scripts to source defaults/periodic.conf overrides safely.
30961981Sbrian
31061981Sbrianif [ -z "${source_periodic_confs_defined}" ]; then
31161981Sbrian        source_periodic_confs_defined=yes
312254974Sjlh
313254974Sjlh	# Compatibility with old daily variable names.
314254974Sjlh	# They can be removed in stable/11.
315254974Sjlh	security_daily_compat_var() {
316254974Sjlh		local var=$1 dailyvar value
317254974Sjlh
318254974Sjlh		dailyvar=daily_status_security${#status_security}
319254974Sjlh		periodvar=${var%enable}period
320254974Sjlh		eval value=\"\$$dailyvar\"
321254974Sjlh		[ -z "$value" ] && return
322254974Sjlh		echo "Warning: Variable \$$dailyvar is deprecated," \
323254974Sjlh		    "use \$$var instead." >&2
324254974Sjlh		case "$value" in
325254974Sjlh		[Yy][Ee][Ss])
326254974Sjlh			$var=YES
327254974Sjlh			$periodvar=daily
328254974Sjlh			;;
329254974Sjlh		*)
330254974Sjlh			$var="$value"
331254974Sjlh			;;
332254974Sjlh		esac
333254974Sjlh	}
334254974Sjlh
335254974Sjlh	check_yesno_period() {
336254974Sjlh		local var="$1" periodvar value period
337254974Sjlh
338254974Sjlh		eval value=\"\$$var\"
339254974Sjlh		case "$value" in
340254974Sjlh		[Yy][Ee][Ss]) ;;
341254974Sjlh		*) return 1 ;;
342254974Sjlh		esac
343254974Sjlh
344254974Sjlh		periodvar=${var%enable}period
345254974Sjlh		eval period=\"\$$periodvar\"
346254974Sjlh		case "$PERIODIC" in
347254974Sjlh		"security daily")
348254974Sjlh			case "$period" in
349254974Sjlh			[Dd][Aa][Ii][Ll][Yy]) return 0 ;;
350254974Sjlh			*) return 1 ;;
351254974Sjlh			esac
352254974Sjlh			;;
353254974Sjlh		"security weekly")
354254974Sjlh			case "$period" in
355254974Sjlh			[Ww][Ee][Ee][Kk][Ll][Yy]) return 0 ;;
356254974Sjlh			*) return 1 ;;
357254974Sjlh			esac
358254974Sjlh			;;
359254974Sjlh		"security monthly")
360254974Sjlh			case "$period" in
361254974Sjlh			[Mm][Oo][Nn][Tt][Hh][Ll][Yy]) return 0 ;;
362254974Sjlh			*) return 1 ;;
363254974Sjlh			esac
364254974Sjlh			;;
365254974Sjlh		security)
366254974Sjlh			# Run directly from crontab(5).
367254974Sjlh			case "$period" in
368254974Sjlh			[Nn][Oo]) return 1 ;;
369254974Sjlh			*) return 0 ;;
370254974Sjlh			esac
371254974Sjlh			;;
372254974Sjlh		*)
373254974Sjlh			echo "ASSERTION FAILED: Unexpected value for " \
374254974Sjlh			    "\$PERIODIC: '$PERIODIC'" >&2
375254974Sjlh			exit 127
376254974Sjlh			;;
377254974Sjlh		esac
378254974Sjlh	}
379254974Sjlh
380238416Skevlo        source_periodic_confs() {
38161981Sbrian                local i sourced_files
38261981Sbrian
38361981Sbrian                for i in ${periodic_conf_files}; do
38461981Sbrian                        case ${sourced_files} in
38561981Sbrian                        *:$i:*)
38661981Sbrian                                ;;
38761981Sbrian                        *)
38861981Sbrian                                sourced_files="${sourced_files}:$i:"
38961981Sbrian                                [ -r $i ] && . $i
39061981Sbrian                                ;;
39161981Sbrian                        esac
39261981Sbrian                done
39361981Sbrian        }
39461981Sbrianfi
395