1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 01:01:52 +02:00

add some more checks to the telnet init script

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6042 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-01-08 21:31:29 +00:00
parent 070f10ae83
commit a6f470987e

View File

@ -2,7 +2,12 @@
# 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
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() {