blob: 6742a9cb201ba20d1a00de1084e25a34f285dda1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: log to ramdisk
lineinfile:
path: /etc/systemd/journald.conf
regexp: '^#?Storage='
line: 'Storage=volatile'
register: journald_conf
- name: restart systemd-journald
when: journald_conf.changed
systemd:
name: systemd-journald.service
state: restarted
|