Feature Request: Add an option to set a remote syslog-server
pidator opened this issue · 3 comments
pidator commented
Could you implement a new parameter to configure/set a remote syslog-server (IP:Port
) directly during image building?
For ubuntu-firmware it will be necessary to add the following line at the end of file /etc/rsyslog.conf
:
*.* @IP:Port
For busybox firmware it will be necessary to replace line 3 of /etc/init/S01logging
:
original: SYSLOGD_ARGS=-n
new: SYSLOGD_ARGS="-n -R IP:Port -L -O /var/log/messages"
Greetings
pidator commented
Thanks for the fast reaction.
Tested with my PR #53 and it's working on both firmwares!
pidator commented
successful implemented - thanks :)