X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=package%2Fbusybox%2Ffiles%2Ftelnet;fp=package%2Fbusybox%2Ffiles%2Ftelnet;h=c994c6052fa983929ee344a2ac831c5fd6f07718;hp=0000000000000000000000000000000000000000;hb=bd8e5fb7db8431d22fad5eb72a2a38c0f1b50f45;hpb=392966798babed140db8ff7266633d65add2edd6 diff --git a/package/busybox/files/telnet b/package/busybox/files/telnet new file mode 100755 index 0000000000..c994c6052f --- /dev/null +++ b/package/busybox/files/telnet @@ -0,0 +1,10 @@ +#!/bin/sh /etc/rc.common +# Copyright (C) 2006 OpenWrt.org + +start() { + if awk -F: '/^root:/ && $2 !~ /\!/ {exit 1}' /etc/passwd 2>/dev/null && [ -x /usr/sbin/dropbear ]; then telnetd -l /bin/login; fi +} + +stop() { + killall telnetd +}