projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add iw utility (untested)
[openwrt.git]
/
package
/
busybox
/
files
/
telnet
diff --git
a/package/busybox/files/telnet
b/package/busybox/files/telnet
index
c994c60
..
5802584
100755
(executable)
--- a/
package/busybox/files/telnet
+++ b/
package/busybox/files/telnet
@@
-1,8
+1,14
@@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
+START=50
start() {
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() {
}
stop() {
This page took
0.023225 seconds
and
4
git commands to generate.