projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d04686
)
Do not run telnet if either dropbear or openssh server are running (#3839)
author
Florian Fainelli
<florian@openwrt.org>
Sat, 9 Aug 2008 09:50:12 +0000
(09:50 +0000)
committer
Florian Fainelli
<florian@openwrt.org>
Sat, 9 Aug 2008 09:50:12 +0000
(09:50 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12258
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/busybox/files/telnet
patch
|
blob
|
history
diff --git
a/package/busybox/files/telnet
b/package/busybox/files/telnet
index
5802584
..
ec99172
100755
(executable)
--- a/
package/busybox/files/telnet
+++ b/
package/busybox/files/telnet
@@
-5,7
+5,7
@@
START=50
start() {
if [ \! -f /etc/passwd ] || \
awk -F: '/^root:/ && ($2 != "") && ($2 !~ /\!/) {exit 1}' /etc/passwd 2>/dev/null || \
- [ \! -x /usr/sbin/dropbear ]
+ ( [ \! -x /usr/sbin/dropbear ] && [ \! -x /usr/sbin/sshd ] )
then \
telnetd -l /bin/login
fi