rename our /bin/login script to /bin/login.sh to avoid collisions with busybox -...
[openwrt/staging/mkresin.git] / package / busybox / files / telnet
index c994c6052fa983929ee344a2ac831c5fd6f07718..082aba7e90b9984cd024751925b6e3effc0ecb84 100755 (executable)
@@ -1,8 +1,14 @@
 #!/bin/sh /etc/rc.common
 # Copyright (C) 2006 OpenWrt.org
+START=50
 
 start() {
-       if awk -F: '/^root:/ && $2 !~ /\!/ {exit 1}' /etc/passwd 2>/dev/null && [ -x /usr/sbin/dropbear ]; then telnetd -l /bin/login; fi
+       if      [ \! -f /etc/passwd ] || \
+               awk -F: '/^root:/ && ($2 != "") && ($2 !~ /\!/) {exit 1}' /etc/passwd 2>/dev/null || \
+               ( [ \! -x /usr/sbin/dropbear ] && [ \! -x /usr/sbin/sshd ] )
+       then \
+               telnetd -l /bin/login.sh
+       fi
 }
 
 stop() {