X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Fdefault%2Ftarget_skeleton%2Fbin%2Flogin;h=bb065e54a1bfcec7e6a5e1f7fdb7eaba2dd08c1a;hb=9039a0cd663896b5fd189317f2b633ac0cf67a31;hp=75208248d8124f0a3d43c94d2ab1359e244ce76b;hpb=c31ac521e420aa0cfd3ddbc0859b29b0e2a3ff3e;p=openwrt-10.03%2F.git diff --git a/target/default/target_skeleton/bin/login b/target/default/target_skeleton/bin/login index 75208248d..bb065e54a 100755 --- a/target/default/target_skeleton/bin/login +++ b/target/default/target_skeleton/bin/login @@ -1,2 +1,20 @@ #!/bin/sh -exec ash --login +. /etc/sysconf 2>&- + +[ "$FAILSAFE" != "true" ] && +[ "$BR2_SYSCONF_TELNET_FAILSAFE_ONLY" = "y" ] && +{ + grep '^root:[^!]' /etc/passwd >&- 2>&- && + { + echo "Login failed." + exit 0 + } || { +cat << EOF + === IMPORTANT ============================ + Use 'passwd' to set your login password + this will disable telnet and enable SSH + ------------------------------------------ +EOF + } +} +exec /bin/ash --login