home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20120305.etc.tar.gz / bradford.20120305.etc.tar / etc / sysconfig / cron < prev    next >
Text File  |  2007-02-24  |  3KB  |  117 lines

  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. #
  11. MAX_DAYS_IN_TMP="0"
  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. #
  19. MAX_DAYS_IN_LONG_TMP="0"
  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. #
  27. TMP_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. #
  36. LONG_TMP_DIRS_TO_CLEAR=""
  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. #
  43. OWNER_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. #
  58. CLEAR_TMP_DIRS_AT_BOOTUP="no"
  59.  
  60. # Type:         time (eg: 14:00)
  61. # Default:      nothing
  62. #
  63. # At which time cron.daily should start. Default is 15 minutes after booting
  64. # the system. Due the cron script runs only every 15 minutes, it will only
  65. # run on xx:00, xx:15, xx:30, xx:45, not at the accurate time you set.
  66. DAILY_TIME=""
  67.  
  68. # Type:         integer (days)
  69. # Default:      5
  70. #
  71. # Maximum days not running when using a fixed time set in DAILY_TIME.
  72. # 0 to skip this. This is for users who will power off their system.
  73. #
  74. # There is a fixed max. of 14 days set,  if you want to override this
  75. # change MAX_NOT_RUN_FORCE in /usr/lib/cron/run-crons
  76. MAX_NOT_RUN="5"
  77.  
  78. ## Type:    yesno
  79. ## Default:    no
  80. #
  81. # send status email even if all scripts in 
  82. # cron.{hourly,daily,weekly,monthly} 
  83. # returned without error? (yes/no)
  84. #
  85. SEND_MAIL_ON_NO_ERROR="no"
  86.  
  87. ## Type:    yesno
  88. ## Default:    no
  89. #
  90. # generate syslog message for all scripts in 
  91. # cron.{hourly,daily,weekly,monthly} 
  92. # even if they haven't returned an error? (yes/no)
  93. #
  94. SYSLOG_ON_NO_ERROR="no"
  95. ## Path:    System/Cron/Man
  96. ## Description: cron configuration for man utility
  97. ## Type:    yesno
  98. ## Default:    yes
  99. #
  100. # Should mandb and whatis be recreated by cron.daily ("yes" or "no")
  101. #
  102. REINIT_MANDB=yes
  103.  
  104. ## Type:    yesno
  105. ## Default:    yes
  106. #
  107. # Should old preformatted man pages (in /var/catman) be deleted? (yes/no)
  108. #
  109. DELETE_OLD_CATMAN=yes
  110.  
  111. ## Type:    integer
  112. ## Default:    7
  113. #
  114. # How long should old preformatted man pages be kept before deletion? (days)
  115. #
  116. CATMAN_ATIME=7
  117.