Mailinglist Archive: opensuse-packaging (135 mails)
| < Previous | Next > |
[opensuse-packaging] Xinetd now honours disable line
- From: Ales Nosek <anosek@xxxxxxx>
- Date: Fri, 10 Aug 2007 08:55:25 +0200
- Message-id: <46BC0BDD.3020207@xxxxxxx>
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: opensuse-packaging+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-packaging+help@xxxxxxxxxxxx
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: opensuse-packaging+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-packaging+help@xxxxxxxxxxxx
| < Previous | Next > |