Deleted Added
full compact
periodic.conf (170085) periodic.conf (174028)
1#!/bin/sh
2#
3# This is defaults/periodic.conf - a file full of useful variables that
4# you can set to change the default behaviour of periodic jobs on your
5# system. You should not edit this file! Put any overrides into one of the
6# $periodic_conf_files instead and you will be able to update these defaults
7# later without spamming your local configuration information.
8#
9# The $periodic_conf_files files should only contain values which override
10# values set in this file. This eases the upgrade path when defaults
11# are changed and new features are added.
12#
13# For a more detailed explanation of all the periodic.conf variables, please
14# refer to the periodic.conf(5) manual page.
15#
1#!/bin/sh
2#
3# This is defaults/periodic.conf - a file full of useful variables that
4# you can set to change the default behaviour of periodic jobs on your
5# system. You should not edit this file! Put any overrides into one of the
6# $periodic_conf_files instead and you will be able to update these defaults
7# later without spamming your local configuration information.
8#
9# The $periodic_conf_files files should only contain values which override
10# values set in this file. This eases the upgrade path when defaults
11# are changed and new features are added.
12#
13# For a more detailed explanation of all the periodic.conf variables, please
14# refer to the periodic.conf(5) manual page.
15#
16# $FreeBSD: head/etc/defaults/periodic.conf 170085 2007-05-29 06:22:14Z dougb $
16# $FreeBSD: head/etc/defaults/periodic.conf 174028 2007-11-28 17:31:11Z jhb $
17#
18
19# What files override these defaults ?
20periodic_conf_files="/etc/periodic.conf /etc/periodic.conf.local"
21
22# periodic script dirs
23local_periodic="/usr/local/etc/periodic"
24

--- 15 unchanged lines hidden (view full) ---

40daily_clean_disks_files="[#,]* .#* a.out *.core *.CKP .emacs_[0-9]*"
41daily_clean_disks_days=3 # If older than this
42daily_clean_disks_verbose="YES" # Mention files deleted
43
44# 110.clean-tmps
45daily_clean_tmps_enable="NO" # Delete stuff daily
46daily_clean_tmps_dirs="/tmp" # Delete under here
47daily_clean_tmps_days="3" # If not accessed for
17#
18
19# What files override these defaults ?
20periodic_conf_files="/etc/periodic.conf /etc/periodic.conf.local"
21
22# periodic script dirs
23local_periodic="/usr/local/etc/periodic"
24

--- 15 unchanged lines hidden (view full) ---

40daily_clean_disks_files="[#,]* .#* a.out *.core *.CKP .emacs_[0-9]*"
41daily_clean_disks_days=3 # If older than this
42daily_clean_disks_verbose="YES" # Mention files deleted
43
44# 110.clean-tmps
45daily_clean_tmps_enable="NO" # Delete stuff daily
46daily_clean_tmps_dirs="/tmp" # Delete under here
47daily_clean_tmps_days="3" # If not accessed for
48daily_clean_tmps_ignore=".X*-lock quota.user quota.group" # Don't delete these
48daily_clean_tmps_ignore=".X*-lock .X11-unix .ICE-unix .font-unix .XIM-unix"
49daily_clean_tmps_ignore="$daily_clean_tmps_ignore quota.user quota.group"
50 # Don't delete these
49daily_clean_tmps_verbose="YES" # Mention files deleted
50
51# 120.clean-preserve
52daily_clean_preserve_enable="YES" # Delete files daily
53daily_clean_preserve_days=7 # If not modified for
54daily_clean_preserve_verbose="YES" # Mention files deleted
55
56# 130.clean-msgs

--- 212 unchanged lines hidden ---
51daily_clean_tmps_verbose="YES" # Mention files deleted
52
53# 120.clean-preserve
54daily_clean_preserve_enable="YES" # Delete files daily
55daily_clean_preserve_days=7 # If not modified for
56daily_clean_preserve_verbose="YES" # Mention files deleted
57
58# 130.clean-msgs

--- 212 unchanged lines hidden ---