add some more checks to the telnet init script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6042 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
8ee3cc2b4c
commit
4032906938
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue