mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 23:09:39 +01:00
In order to have more robust stand-alone network tools in oe-core, bring in inetutils from meta-openembedded/meta-networking. This imports the recipes as of git commit: commit 408204073e6bdcd8ac586e05d5b75213417673f2 Author: Martin Jansa <martin.jansa@gmail.com> Date: Thu Aug 16 20:39:15 2018 +0000 inetutils: fix build with glibc-2.28 (From OE-Core rev: ace6911e663709f07ca73aa72f6bb4f4111b2749) Signed-off-by: Tom Rini <trini@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
301 B
Plaintext
14 lines
301 B
Plaintext
# default: on
|
|
# description: The telnet server serves telnet sessions; it uses \
|
|
# unencrypted username/password pairs for authentication.
|
|
service telnet
|
|
{
|
|
disable = no
|
|
flags = REUSE
|
|
socket_type = stream
|
|
wait = no
|
|
user = root
|
|
server = @SBINDIR@/in.telnetd
|
|
log_on_failure += USERID
|
|
}
|