test.yml 414 B

123456789101112131415161718
  1. ---
  2. - hosts: all
  3. sudo: True
  4. roles:
  5. - ansible-logrotate
  6. - role: ansible-logrotate
  7. logrotate_scripts:
  8. - name: nginx-options
  9. path: /var/log/nginx/options.log
  10. options:
  11. - daily
  12. - role: ansible-logrotate
  13. logrotate_scripts:
  14. - name: nginx-scripts
  15. path: /var/log/nginx/scripts.log
  16. scripts:
  17. postrotate: "echo test"