mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
a53aa71c83
SVN-Revision: 12258
17 lines
329 B
Bash
Executable File
17 lines
329 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 || \
|
|
( [ \! -x /usr/sbin/dropbear ] && [ \! -x /usr/sbin/sshd ] )
|
|
then \
|
|
telnetd -l /bin/login
|
|
fi
|
|
}
|
|
|
|
stop() {
|
|
killall telnetd
|
|
}
|