mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-05 18:48:31 +00:00
tcpd from tcp-wrapper is installed into /usr/sbin/, not /usr/bin/ using sed to dynamical update the path to add the robust Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
20 lines
538 B
Plaintext
20 lines
538 B
Plaintext
# default: off
|
|
# description:
|
|
# Tftpd is a server which supports the Internet Trivial File Transfer
|
|
# Pro-tocol (RFC 783). The TFTP server operates at the port indicated
|
|
# in the tftp service description; see services(5).
|
|
#
|
|
service tftp
|
|
{
|
|
disable = yes
|
|
socket_type = dgram
|
|
protocol = udp
|
|
flags = IPv6
|
|
wait = yes
|
|
user = root
|
|
group = root
|
|
server = @SBINDIR@/in.tftpd
|
|
server_args = /tftpboot
|
|
}
|
|
|