10 lines
157 B
Plaintext
10 lines
157 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
test -r /etc/sysconfig/config && . /etc/sysconfig/config
|
||
|
|
||
|
if test "$DROPBEAR" != "yes"; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
exec /usr/sbin/telnetd -F -l /bin/login
|