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