1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-24 06:42:26 +03:00
openwrt-xburst/package/base-files/files/bin/login.sh
2011-11-11 13:25:31 +00:00

17 lines
375 B
Bash
Executable File

#!/bin/sh
# Copyright (C) 2006-2011 OpenWrt.org
if grep -qs '^root:[^!:]' /etc/passwd /etc/shadow && [ -z "$FAILSAFE" ]; then
echo "Login failed."
exit 0
else
cat << EOF
=== IMPORTANT ============================
Use 'passwd' to set your login password
this will disable telnet and enable SSH
------------------------------------------
EOF
fi
exec /bin/ash --login