Ensure dropbear is installed before disabling telnet (#920)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5465 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Florian Fainelli 2006-11-07 16:40:07 +00:00
parent c3ee48d9f9
commit e0d91f8546
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# Copyright (C) 2006 OpenWrt.org
start() {
if awk -F: '/^root:/ && $2 !~ /\!/ {exit 1}' /etc/passwd 2>/dev/null; then telnetd -l /bin/login; fi
if awk -F: '/^root:/ && $2 !~ /\!/ {exit 1}' /etc/passwd 2>/dev/null && [ -x /usr/sbin/dropbear ]; then telnetd -l /bin/login; fi
}
stop() {