home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / rescue / etc / sysconfig / cron < prev    next >
Text File  |  2006-11-29  |  3KB  |  96 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 to the fact that cron script runs only every 15 minutes,
  65. # it will only run on xx:00, xx:15, xx:30, xx:45, not at the accurate time
  66. # you set.
  67. DAILY_TIME=""
  68.  
  69. # Type:         integer (days)
  70. # Default:      5
  71. #
  72. # Maximum days not running when using a fixed time set in DAILY_TIME.
  73. # 0 to skip this. This is for users who will power off their system.
  74. #
  75. # There is a fixed max. of 14 days set,  if you want to override this
  76. # change MAX_NOT_RUN_FORCE in /usr/lib/cron/run-crons
  77. MAX_NOT_RUN="5"
  78.  
  79. ## Type:    yesno
  80. ## Default:    no
  81. #
  82. # send status email even if all scripts in 
  83. # cron.{hourly,daily,weekly,monthly} 
  84. # returned without error? (yes/no)
  85. #
  86. SEND_MAIL_ON_NO_ERROR="no"
  87.  
  88. ## Type:    yesno
  89. ## Default:    no
  90. #
  91. # generate syslog message for all scripts in 
  92. # cron.{hourly,daily,weekly,monthly} 
  93. # even if they haven't returned an error? (yes/no)
  94. #
  95. SYSLOG_ON_NO_ERROR="no"
  96.