Browse Source

add some more checks to the telnet init script

SVN-Revision: 6042
Felix Fietkau 19 years ago
parent
commit
cd10aa726f
1 changed files with 6 additions and 1 deletions
  1. 6 1
      package/busybox/files/telnet

+ 6 - 1
package/busybox/files/telnet

@@ -2,7 +2,12 @@
 # Copyright (C) 2006 OpenWrt.org
 # Copyright (C) 2006 OpenWrt.org
 
 
 start() {
 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 ]
+	then \
+		telnetd -l /bin/login
+	fi
 }
 }
 
 
 stop() {
 stop() {