diff options
Diffstat (limited to 'perl-install/bootlook.pm')
-rw-r--r-- | perl-install/bootlook.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |