1
0
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:
jow
2010-07-18 18:36:12 +00:00
parent b1acaee343
commit 825dbb37aa
2 changed files with 20 additions and 22 deletions

View File

@@ -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