frequent_log_rotation.yml 416 B

123456789101112131415161718
  1. ---
  2. - name: Rotate logs daily
  3. replace:
  4. dest: /etc/logrotate.conf
  5. regexp: '^weekly|monthly|yearly$'
  6. replace: daily
  7. - name: Rotate at a smaller size of log
  8. lineinfile:
  9. dest: /etc/logrotate.conf
  10. state: present
  11. regexp: '^size'
  12. line: size 10M
  13. - name: Limit total size of log files
  14. lineinfile:
  15. dest: /etc/logrotate.conf
  16. state: present
  17. regexp: '^maxsize'
  18. line: maxsize 20M