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