On Sunday 20 June 2004 20:56, Nick Bargnesi wrote:
The tftp daemon is started using the inetd service, not a runlevel script like the ssh daemon. To start tftp, you can use the inetd section of yast under network services.
I don't run inetd. I run xinetd, which is what brings up my dhcpd and other daemons at startup. I tried to make tftpd start automatically with "chkconfig tftpd" but this gave an error message. "chkconfig tftp" didn't give an error message but it doesn't get started by xinetd even though the output from "chkconfig tftp" claims that xinetd starts it: # chkconfig tftp tftp xinetd Here is my /etc/xinetd.d/tftp # default: off # description: tftp service is provided primarily for booting or when a \ # router need an upgrade. Most sites run this only on machines acting as # "boot servers". service tftp { socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.tftpd server_args = -s /srv/tftpboot -r blksize disable = no }
M. Ranjit Mathews wrote:
Is there some way to add a service to the list of services configurable via the Runlevel Editor?