Fix login so it does fall through if /etc/verify isn't present

This commit is contained in:
Freemor 2012-06-21 13:43:03 -03:00
parent 9a04a3d23e
commit 6fd3edaca5
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@ if [ -f /etc/owner ]; then
cat /etc/owner
fi
if [ ! -f /etc/verify ]; then
exec $1
fi
echo -n "Password: "
stty -echo