8 lines
119 B
Bash
Executable File
8 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# dump journalctl to /var/log/syslog
|
|
# logrotate is handled itself
|
|
|
|
exec journalctl -f > /var/log/syslog
|
|
|