mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
[package] base-files, busybox: fix 22279, simplify code and get rid of awk
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22282 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -1,25 +1,16 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2006-2010 OpenWrt.org
|
||||
|
||||
|
||||
regpassresult="0"
|
||||
grep '^root:[^!]' /etc/passwd >&- 2>&-
|
||||
regpassresult="$?"
|
||||
shadowresult="0"
|
||||
if [ -e "/etc/shadow" ]; then
|
||||
grep '^root:[^!]' /etc/shadow >&- 2>&-
|
||||
shadowresult="$?"
|
||||
fi
|
||||
[ "$regpassresult" = "0" ] && [ "$shadowresult" = "0" ] && [ -z "$FAILSAFE" ] && {
|
||||
echo "Login failed."
|
||||
exit 0
|
||||
} || {
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user