From 58d54ce8f7521de174ac4e87e491cb036c56dad3 Mon Sep 17 00:00:00 2001 From: Yves Duret Date: Tue, 5 Mar 2002 01:59:25 +0000 Subject: fix nobody bug --- perl-install/bootlook.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/bootlook.pm b/perl-install/bootlook.pm index c91184013..ba4986f10 100644 --- a/perl-install/bootlook.pm +++ b/perl-install/bootlook.pm @@ -192,7 +192,7 @@ sub parse_etc_passwd do { @user_info = getpwent(); ($uname, $uid) = @user_info[0,2]; - push (@usernames, $uname) if ($uid > 500); + push (@usernames, $uname) if ($uid > 500) and !($uname eq "nobody"); } while (@user_info); } -- cgit v1.2.1