1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-13 03:48:38 +03:00
openwrt-xburst/package/base-files/files/bin/login.sh

17 lines
375 B
Bash
Raw Normal View History

#!/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