Skip to content
Snippets Groups Projects
Commit 18b1a6dd authored by Florian Fainelli's avatar Florian Fainelli
Browse files

Ensure dropbear is installed before disabling telnet (#920)

SVN-Revision: 5465
parent 0b1e4d02
No related branches found
No related tags found
No related merge requests found
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment