Ensure dropbear is installed before disabling telnet (#920)
SVN-Revision: 5465
This commit is contained in:
parent
0b1e4d027a
commit
18b1a6dd6e
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue