8974bc6ae2
SVN-Revision: 22279
17 lines
425 B
Bash
Executable file
17 lines
425 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
START=50
|
|
|
|
start() {
|
|
if [ \! -f /etc/passwd ] || \
|
|
( awk -F: '/^root:/ && ($2 != "") && ($2 !~ /\!/) {exit 1}' /etc/passwd 2>/dev/null && \
|
|
awk -F: '/^root:/ && ($2 != "") && ($2 !~ /\!/) {exit 1}' /etc/shadow 2>/dev/null ) || \
|
|
( [ \! -x /usr/sbin/dropbear ] && [ \! -x /usr/sbin/sshd ] )
|
|
then \
|
|
telnetd -l /bin/login.sh
|
|
fi
|
|
}
|
|
|
|
stop() {
|
|
killall telnetd
|
|
}
|