27 lines
588 B
YAML
27 lines
588 B
YAML
---
|
|
|
|
- name: verify that all.log exists
|
|
stat:
|
|
path: /var/log/all.log
|
|
register: result
|
|
|
|
- name: create dummy all.log file
|
|
file:
|
|
path: /var/log/all.log
|
|
state: touch
|
|
mode: 0644
|
|
owner: root
|
|
group: "{{ ansible_wheel }}"
|
|
when: not result.stat.exists
|
|
|
|
- name: enable all.log
|
|
lineinfile:
|
|
path: /etc/syslog.conf
|
|
line: "*.* /var/log/all.log"
|
|
notify: restart syslogd
|
|
|
|
- name: enable all.log rotation
|
|
lineinfile:
|
|
path: /etc/newsyslog.conf
|
|
regexp: "^/var/log/all.log.*"
|
|
line: "/var/log/all.log root:{{ ansible_wheel }} 640 7 * $D0 Z"
|