Custom Query (1145 matches)
Results (253 - 255 of 1145)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#359 | fixed | Sending all of dmesg to wslogger is kind of obnoxious | geofft | |
Description |
cfox reports that the entire kernel boot process is sent to wslogger (see /mit/cfox/Public/hayden-1 for an example); indeed, our syslog transformer adds *.warning;kern,user,auth.info @WSLOGGER.MIT.EDU That probably wants to be restricted to only high-priority kernel messages. |
|||
#361 | fixed | we know that libuuid and mit conflict; don't syslog it | andersk | geofft |
Description |
Although we should deal with renumbering mit or whatever we choose to do (see #299) eventually, that's not going to happen soon. In the meantime, it's kind of useless to keep syslogging Sep 1 13:54:24 tyger hal-acl-tool: nss_nonlocal: removing local group 101 (libuuid) from non-local user geofft Sep 1 13:54:24 tyger last message repeated 4 times Sep 1 13:54:24 tyger getent: nss_nonlocal: removing local group 101 (libuuid) from non-local user geofft Sep 1 13:54:24 tyger hal-acl-tool: nss_nonlocal: removing local group 101 (libuuid) from non-local user geofft Sep 1 13:54:26 tyger last message repeated 62 times etc. since that message doesn't help anyone: users don't care, and the Debathena team isn't taking any additional action because that message continues to appear on everyone's system. I see three mostly-reasonable courses of action:
|
|||
#364 | fixed | Tab completion for athinfo | broder | |
Description |
It would be cool to add tab completion to athinfo. You could use the _known_hosts function for completing the hostname, and then the output of athinfo <hostname> queries for completing the query. This does have some small challenges. It's possible that the remote host is down, in which case athinfo will hang for some time before timing out; you don't want that hang to hang tab completion as well. Since all queries (including 'query') are admin-configurable, you can never assume that the output is actually in the right format, or free of undesirable spaces/semicolons/etc. And you can also never assume that athinfo won't hang after connecting while it's in the process of printing out the query. To solve the latter two issues, you want to make sure that you kill athinfo after a timeout (probably no more than a second). I'm not sure whether this can be done from pure bash, so you might need a helper script. |