diff options
Diffstat (limited to 'meta-networking/recipes-netkit/netkit-telnet/files/telnet-xinetd')
-rw-r--r-- | meta-networking/recipes-netkit/netkit-telnet/files/telnet-xinetd | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta-networking/recipes-netkit/netkit-telnet/files/telnet-xinetd b/meta-networking/recipes-netkit/netkit-telnet/files/telnet-xinetd new file mode 100644 index 0000000000..12204c71b2 --- /dev/null +++ b/meta-networking/recipes-netkit/netkit-telnet/files/telnet-xinetd | |||
@@ -0,0 +1,14 @@ | |||
1 | # default: on | ||
2 | # description: The telnet server serves telnet sessions; it uses \ | ||
3 | # unencrypted username/password pairs for authentication. | ||
4 | service telnet | ||
5 | { | ||
6 | flags = REUSE | ||
7 | socket_type = stream | ||
8 | wait = no | ||
9 | user = root | ||
10 | server = /usr/sbin/in.telnetd | ||
11 | log_on_failure += USERID | ||
12 | disable = yes | ||
13 | } | ||
14 | |||