1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-13 10:49:13 +02:00

base-files: remove ununsed login.sh

Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
John Crispin 2016-04-19 20:42:34 +02:00
parent b4e33a1c08
commit 528ffec3cd

View File

@ -1,18 +0,0 @@
#!/bin/sh
# Copyright (C) 2006-2011 OpenWrt.org
if ( ! grep -qsE '^root:[!x]?:' /etc/shadow || \
! grep -qsE '^root:[!x]?:' /etc/passwd ) && \
[ -z "$FAILSAFE" ]
then
echo "Login failed."
exit 0
else
cat << EOF
=== IMPORTANT ============================
Use 'passwd' to set your login password!
------------------------------------------
EOF
fi
exec /bin/ash --login