In /bin/rc-status: line 227: print_msg "${service}" "${GOOD}" 'started ' ^^ --- unnecessary space character line 229: print_msg "${service}" "${BAD}" 'stopped ' ^^ --- unnecessary space character This leads to an output such as [ started ] as opposed to [ started ]. Other lines that have similar output do not have this character at the end. Could they please be removed, for the sake of consistency? Thank you. Reproducible: Always
Please attach the output from emerge --info and reopen this bug once that is done. Thanks, William
not a bug, so no need
enough spacing is provided for the longest message so things are always in line [ started ] [ inactive ] [ stopped ] [ stopping ] [ starting ] [ broken ]
Ah, I see -- I missed the others, sorry. It's rather unfortunate though, considering you're mostly going to see only [ started ].
i agree, but most of the time is spent on scanning, so in order to calculate the required space, you need to do the whole scan. so today you get little pauses between each message, but with that algo you get one long pause and then a dump of everything. and it's more complicated ;).
That's true :) Thanks for looking in on it.