Deleted Added
full compact
periodic.conf (196442) periodic.conf (205509)
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 196442 2009-08-23 06:30:14Z kensmith $
16# $FreeBSD: head/etc/defaults/periodic.conf 205509 2010-03-23 06:19:44Z joerg $
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

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

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 .X11-unix .ICE-unix .font-unix .XIM-unix"
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

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

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 .X11-unix .ICE-unix .font-unix .XIM-unix"
49daily_clean_tmps_ignore="$daily_clean_tmps_ignore quota.user quota.group"
49daily_clean_tmps_ignore="$daily_clean_tmps_ignore quota.user quota.group .snap"
50 # Don't delete these
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

--- 214 unchanged lines hidden ---
50 # Don't delete these
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

--- 214 unchanged lines hidden ---