Umm hi
i was using turnstile and i saw it sends a message to tty which i dont want so,
syslog() is "uncatchable" by dinit or runit if no syslog daemon is running, causing "log leakage" onto the TTY.
when i saw the source code i saw this
|
syslog(LOG_INFO, "Initializing turnstiled..."); |
which was causing this
i would be really thankful if u remove this line or
if (!quiet) {
syslog(LOG_INFO, "Initializing turnstiled...");
}
so that it would atleast be quiet
Umm hi
i was using turnstile and i saw it sends a message to tty which i dont want so,
syslog() is "uncatchable" by dinit or runit if no syslog daemon is running, causing "log leakage" onto the TTY.
when i saw the source code i saw this
turnstile/src/turnstiled.cc
Line 1321 in e3413da
which was causing this
i would be really thankful if u remove this line or
if (!quiet) {
syslog(LOG_INFO, "Initializing turnstiled...");
}
so that it would atleast be quiet