Also should mention RTFM! man xinetd shows you should look at man 5
xinetd which explains all. There's also more info at www.xinetd.org
BillK
Stephen Carville wrote:
>
> To disable a service in /etc/xinetd.d just edit the relevant file to add
> the line 'disable = yes' somewhere between the braces.
>
> service ftp
> {
> disable = yes
> socket_type = stream
> wait = no
> user = root
> server = /usr/sbin/in.ftpd
> server_args = -l -a
> log_on_success += DURATION USERID
> log_on_failure += USERID
> nice = 10
> }