mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-04 21:51:56 +00:00
add some more checks to the telnet init script
SVN-Revision: 6042
This commit is contained in:
parent
097ec4d16c
commit
cd10aa726f
@ -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
Block a user