main.yml 378 B

1234567891011
  1. ---
  2. - name: nickhammond.logrotate | Install logrotate
  3. action: "{{ ansible_pkg_mgr }} name=logrotate state=present"
  4. when: not openshift.common.is_atomic | bool
  5. - name: nickhammond.logrotate | Setup logrotate.d scripts
  6. template:
  7. src: logrotate.d.j2
  8. dest: /etc/logrotate.d/{{ item.name }}
  9. with_items: "{{ logrotate_scripts }}"
  10. when: logrotate_scripts is defined