Hi,

Xinetd was patched to honour disable line in service configuration files
(stored in /etc/xinetd.d). Xinetd now aborts parsing of the config file
as soon as it reads the line "disable = yes". This was made to prevent
Xinetd
from dropping warnings into logs which where not relevant.

Futher information can be found at:
https://bugzilla.novell.com/show_bug.cgi?id=254613

Please, when you make updates of services which run under Xinetd, move
the disable line to the beginning of the config file.

For example file /etc/xinetd.d/echo:

# default: off
# description: An echo server. This is the tcp version.

service echo
{
        type            = INTERNAL
        id              = echo-stream
        socket_type     = stream
        protocol        = tcp
        user            = root
        wait            = no
        disable         = yes
        FLAGS           = IPv6 IPv4
}

should be

service echo
{
        disable         = yes
        type            = INTERNAL
        id              = echo-stream
        socket_type     = stream
        protocol        = tcp
        user            = root
        wait            = no
        FLAGS           = IPv6 IPv4
}

Thanks,

Ales
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to