mirror of
https://git.yoctoproject.org/poky
synced 2026-03-10 17:29:40 +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>
22 lines
508 B
Plaintext
22 lines
508 B
Plaintext
# default: off
|
|
# description:
|
|
# The rshd server is a server for the rcmd(3) routine and,
|
|
# consequently, for the rsh(1) program. The server provides
|
|
# remote execution facilities with authentication based on
|
|
# privileged port numbers from trusted hosts.
|
|
#
|
|
service shell
|
|
{
|
|
socket_type = stream
|
|
protocol = tcp
|
|
flags = NAMEINARGS
|
|
wait = no
|
|
user = root
|
|
group = root
|
|
log_on_success += USERID
|
|
log_on_failure += USERID
|
|
server = @SBINDIR@/tcpd
|
|
server_args = @SBINDIR@/in.rshd -aL
|
|
disable = yes
|
|
}
|