diff options
author | Yves Duret <yduret@mandriva.com> | 2002-03-05 01:59:25 +0000 |
---|---|---|
committer | Yves Duret <yduret@mandriva.com> | 2002-03-05 01:59:25 +0000 |
commit | 58d54ce8f7521de174ac4e87e491cb036c56dad3 (patch) | |
tree | a81c24c00434d859bc07d2e4f617a0a670252ef2 /perl-install | |
parent | bc02f3fe1969f8c5da0f0550fd4f841101cf05e9 (diff) | |
download | drakx-backup-do-not-use-58d54ce8f7521de174ac4e87e491cb036c56dad3.tar drakx-backup-do-not-use-58d54ce8f7521de174ac4e87e491cb036c56dad3.tar.gz drakx-backup-do-not-use-58d54ce8f7521de174ac4e87e491cb036c56dad3.tar.bz2 drakx-backup-do-not-use-58d54ce8f7521de174ac4e87e491cb036c56dad3.tar.xz drakx-backup-do-not-use-58d54ce8f7521de174ac4e87e491cb036c56dad3.zip |
fix nobody bug
Diffstat (limited to 'perl-install')
-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); } |