mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-02 20:39:49 +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>
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
|
|
}
|