mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-04-30 05:31:18 +01:00
17 lines
220 B
Plaintext
17 lines
220 B
Plaintext
@version: 3.9
|
|
|
|
source s_sys {
|
|
file("/proc/kmsg" program_override("kernel"));
|
|
unix-stream ("/dev/log");
|
|
internal();
|
|
};
|
|
|
|
destination d_all {
|
|
file("/var/log/messages");
|
|
};
|
|
|
|
log {
|
|
source(s_sys);
|
|
destination(d_all);
|
|
};
|