From 6fd3edaca51716ac8b55007a62610e50cc078ad1 Mon Sep 17 00:00:00 2001 From: Freemor Date: Thu, 21 Jun 2012 13:43:03 -0300 Subject: [PATCH] Fix login so it does fall through if /etc/verify isn't present --- ben-security/sbin/login | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ben-security/sbin/login b/ben-security/sbin/login index d121111..302efe1 100755 --- a/ben-security/sbin/login +++ b/ben-security/sbin/login @@ -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