diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2010-05-17 06:54:44 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2010-05-17 06:54:44 +0000 |
commit | 7a80fb69e7c6561ae165dc865a797987bf772b23 (patch) | |
tree | 67c4ce18473abdb72ffd2f29f6e432c19ce79c78 /perl-install/fs/format.pm | |
parent | 92a634cf51da876fa7e28169afbea6fe4e3a29d9 (diff) | |
download | drakx-7a80fb69e7c6561ae165dc865a797987bf772b23.tar drakx-7a80fb69e7c6561ae165dc865a797987bf772b23.tar.gz drakx-7a80fb69e7c6561ae165dc865a797987bf772b23.tar.bz2 drakx-7a80fb69e7c6561ae165dc865a797987bf772b23.tar.xz drakx-7a80fb69e7c6561ae165dc865a797987bf772b23.zip |
re-add part of the cahnge that was drop by previous revert
Diffstat (limited to 'perl-install/fs/format.pm')
-rw-r--r-- | perl-install/fs/format.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index 9caa4f45f..708c8ef8e 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -271,7 +271,7 @@ sub formatMount_part { } #- setting user_xattr on /home (or "/" if no /home) - if (!$part->{isMounted} && member($part->{fs_type}, qw(ext3 ext4)) + if (!$part->{isMounted} && member($part->{fs_type}, qw(ext2 ext3 ext4)) && ($part->{mntpoint} eq '/home' || !fs::get::has_mntpoint('/home', $all_hds) && $part->{mntpoint} eq '/')) { run_program::run('tune2fs', '-o', 'user_xattr', devices::make($part->{real_device} || $part->{device})); |