BUG: images are missing rsyslog service preventing applications from using the Linux system level logger. The following app returns: Unix syslog delivery error ``` package main import ( "fmt" "log" "log/syslog" ) func main() { logwriter, err := syslog.New(syslog.LOG_NOTICE, "myprog") if err != nil { fmt.Println(err.Error()) } log.SetOutput(logwriter) } ``` Should the images be including this basic system feature?