Saltstack Official Logrotate Formula
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

33 líneas
599B

  1. # see "man logrotate" for details
  2. # rotate log files weekly
  3. weekly
  4. # keep 4 weeks worth of backlogs
  5. rotate 4
  6. # create new (empty) log files after rotating old ones
  7. create
  8. # uncomment this if you want your log files compressed
  9. #compress
  10. # packages drop log rotation information into this directory
  11. include /etc/logrotate.d
  12. # no packages own wtmp, or btmp -- we'll rotate them here
  13. /var/log/wtmp {
  14. missingok
  15. monthly
  16. create 0664 root utmp
  17. rotate 1
  18. }
  19. /var/log/btmp {
  20. missingok
  21. monthly
  22. create 0660 root utmp
  23. rotate 1
  24. }
  25. # system-specific logs may be configured here