summaryrefslogtreecommitdiffstats
path: root/urunlevel/runlevel/sysconfig/cron
diff options
context:
space:
mode:
Diffstat (limited to 'urunlevel/runlevel/sysconfig/cron')
-rw-r--r--urunlevel/runlevel/sysconfig/cron98
1 files changed, 98 insertions, 0 deletions
diff --git a/urunlevel/runlevel/sysconfig/cron b/urunlevel/runlevel/sysconfig/cron
new file mode 100644
index 0000000..f5edf96
--- /dev/null
+++ b/urunlevel/runlevel/sysconfig/cron
@@ -0,0 +1,98 @@
1## Path: System/Cron
2## Description: days to keep old files in tmp-dirs, 0 to disable
3## Type: integer
4## Default: 0
5## Config:
6#
7# cron.daily can check for old files in tmp-dirs. It will delete all files
8# not accessed for more than MAX_DAYS_IN_TMP. If MAX_DAYS_IN_TMP is not set
9# or set to 0, this feature will be disabled.
10#
11MAX_DAYS_IN_TMP="7"
12
13## Type: integer
14## Default: 0
15#
16# see MAX_DAYS_IN_TMP. This allows to specify another frequency for
17# a second set of directories.
18#
19MAX_DAYS_IN_LONG_TMP="7"
20
21## Type: string
22## Default: "/tmp"
23#
24# This variable contains a list of directories, in which old files are to
25# be searched and deleted. The frequency is determined by MAX_DAYS_IN_TMP
26#
27TMP_DIRS_TO_CLEAR="/tmp"
28
29## Type: string
30## Default: ""
31#
32# This variable contains a list of directories, in which old files are to
33# be searched and deleted. The frequency is determined by MAX_DAYS_IN_LONG_TMP
34# If cleaning of /var/tmp is wanted add it here.
35#
36LONG_TMP_DIRS_TO_CLEAR="/var/tmp"
37
38## Type: string
39## Default: root
40#
41# In OWNER_TO_KEEP_IN_TMP, you can specify, whose files shall not be deleted.
42#
43OWNER_TO_KEEP_IN_TMP="root"
44
45## Type: string
46## Default: no
47#
48# "Set this to "yes" to entirely remove (rm -rf) all files and subdirectories
49# from the temporary directories defined in TMP_DIRS_TO_CLEAR on bootup.
50# Please note, that this feature ignores OWNER_TO_KEEP_IN_TMP - all files will
51# be removed without exception."
52#
53# If this is set to a list of directories (i.e. starts with a "/"), these
54# directories will be cleared instead of those listed in TMP_DIRS_TO_CLEAR.
55# This can be used to clear directories at boot as well as clearing unused
56# files out of other directories.
57#
58CLEAR_TMP_DIRS_AT_BOOTUP="no"
59## Path: System/Cron/Man
60## Description: cron configuration for man utility
61## Type: yesno
62## Default: yes
63#
64# Should mandb and whatis be recreated by cron.daily ("yes" or "no")
65#
66REINIT_MANDB="yes"
67
68## Type: yesno
69## Default: yes
70#
71# Should old preformatted man pages (in /var/catman) be deleted? (yes/no)
72#
73DELETE_OLD_CATMAN="yes"
74
75## Type: integer
76## Default: 7
77#
78# How long should old preformatted man pages be kept before deletion? (days)
79#
80CATMAN_ATIME="7"
81## Path: System/Cron
82## Description: Deleting core files
83## Type: yesno
84## Default: no
85#
86# Should old corefiles they be deleted? ("yes" or "no")
87# If set to 'no', cron.daily will tell you if it finds old core files.
88# NOTE: This feature requires RUN_UPDATEDB to be set to "yes"
89# and the package with locate (findutils-locate) to be installed.
90#
91DELETE_OLD_CORE="yes"
92
93## Type: integer
94## Default: 7
95#
96# Maximum age of core files (in days)
97#
98MAX_DAYS_FOR_CORE="7"