Subversion Repositories configs

Rev

Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
# Pass any given paramter to yum, as run in all the scripts invoked
2
# by this package.  Be aware that this is global, and yum is invoked in
3
# several modes by these scripts for which your own parameter might not
4
# be appropriate
158 - 5
YUM_PARAMETER=""
4 - 6
 
7
# Don't install, just check (valid: yes|no)
8
CHECK_ONLY=no
9
 
10
# Check to see if you can reach the repos before updating (valid: yes|no)
11
CHECK_FIRST=no
12
 
13
# Don't install, just check and download (valid: yes|no)
14
# Implies CHECK_ONLY=yes (gotta check first to see what to download)
15
DOWNLOAD_ONLY=no
16
 
17
# Error level, practical range 0-10, 0 means print only critical errors which
18
# you must be told, 1 means print all errors, even ones that are not important
19
# Level 0 is the default
20
# ERROR_LEVEL=0
21
 
22
# Debug level, practical range 0-10, higher number means more output
23
# Level 1 is a useful level if you want to see what's been done and
24
# don't want to read /var/log/yum.log
25
# Level 0 is the default
26
# DEBUG_LEVEL=1
27
 
28
# randomwait is used by yum to wait random time
29
# default is 60 so yum waits random time from 1 to 60 minutes
30
# the value must not be zero
31
RANDOMWAIT="60"
32
 
33
# if MAILTO is set and the mail command is available, the mail command
34
# is used to deliver yum output
35
 
36
# by default MAILTO is unset, so crond mails the output by itself
37
# example:  MAILTO=root
38
MAILTO=
39
 
40
# you may set SYSTEMNAME if you want your yum emails tagged differently
41
# default is output of hostname command
42
# this variable is used only if MAILTO is set too
43
#SYSTEMNAME=""
44
 
45
# you may set DAYS_OF_WEEK to the days of the week you want to run
46
# default is every day
47
#DAYS_OF_WEEK="0123456"
48
 
49
# which day should it do cleanup on?  defaults to 0 (Sunday).  If this day isn't in the
50
# DAYS_OF_WEEK above, it'll never happen
51
CLEANDAY="0"
52
 
53
# set to yes to make the yum-cron service to wait for transactions to complete
54
SERVICE_WAITS=yes
55
 
56
# set maximum time period (in seconds) for the yum-cron service to wait for
57
# transactions to complete.  The default is 300 seconds (5 minutes)
58
SERVICE_WAIT_TIME=300