projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
package/compcache: revert r22458 as there are some issues with the mainline code
[openwrt.git]
/
package
/
busybox
/
files
/
telnet
diff --git
a/package/busybox/files/telnet
b/package/busybox/files/telnet
index
c994c60
..
b882337
100755
(executable)
--- a/
package/busybox/files/telnet
+++ b/
package/busybox/files/telnet
@@
-1,10
+1,24
@@
#!/bin/sh /etc/rc.common
#!/bin/sh /etc/rc.common
-# Copyright (C) 2006 OpenWrt.org
+# Copyright (C) 2006-2010 OpenWrt.org
+START=50
+
+has_root_pwd() {
+ local pwd=$([ -f "$1" ] && cat "$1")
+ pwd="${pwd#*root:}"
+ pwd="${pwd%%:*}"
+
+ test -n "${pwd#!}"
+}
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 ( ! has_root_pwd /etc/passwd && ! has_root_pwd /etc/shadow ) || \
+ ( [ ! -x /usr/sbin/dropbear ] && [ ! -x /usr/sbin/sshd ] );
+ then
+ telnetd -l /bin/login.sh
+ fi
}
stop() {
}
stop() {
- killall telnetd
+ killall telnetd
2>/dev/null
}
}
+
This page took
0.022491 seconds
and
4
git commands to generate.