diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-03-13 19:34:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-03-13 19:34:07 +0000 |
commit | 9919b941ca78b415fab2f6574c0cdee0e7971c7e (patch) | |
tree | d008360f5f18df2e7ed4d06fbb5d14622ddbeec6 /perl-install/any.pm | |
parent | df2ef110c9e4023d597f465a14eb4bb2d20f47f7 (diff) | |
download | drakx-9919b941ca78b415fab2f6574c0cdee0e7971c7e.tar drakx-9919b941ca78b415fab2f6574c0cdee0e7971c7e.tar.gz drakx-9919b941ca78b415fab2f6574c0cdee0e7971c7e.tar.bz2 drakx-9919b941ca78b415fab2f6574c0cdee0e7971c7e.tar.xz drakx-9919b941ca78b415fab2f6574c0cdee0e7971c7e.zip |
fix looking for the user uid.gid
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index f96322387..5bc15eb03 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -511,7 +511,7 @@ sub set_window_manager { #- for KDM/GDM my $wm_number = sessions_with_order()->{$wm} || ''; update_gnomekderc("$p_home/.dmrc", 'Desktop', Session => "$wm_number$wm"); - my $user = find { $p_home eq $_->[7] } list_passwd(); + my $user = find { $home eq $_->[7] } list_passwd(); chown($user->[2], $user->[3], "$p_home/.dmrc"); #- for startx/autologin |