1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 23:18:32 +03:00
openwrt-xburst/openwrt/target/default/target_skeleton/bin/login

12 lines
211 B
Plaintext
Raw Normal View History

#!/bin/sh
[ "$FAILSAFE" = "true" ] && exec /bin/ash --login
[ -f /etc/sysconf ] && . /etc/sysconf
if [ "$BR2_SYSCONF_TELNET_FAILSAFE_ONLY" = "y" ]; then
echo "Login failed."
exit 0
fi
exec /bin/ash --login