diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-09-09 14:32:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-09-09 14:32:28 +0000 |
commit | e94b108c2f253ada585f3b9f2323a6ccf6787ea0 (patch) | |
tree | a70b54ed9bebe8f641f46c29a24c1d7e94507947 /perl-install | |
parent | f019b21180311a8b62fa224347fe6495249be24c (diff) | |
download | drakx-e94b108c2f253ada585f3b9f2323a6ccf6787ea0.tar drakx-e94b108c2f253ada585f3b9f2323a6ccf6787ea0.tar.gz drakx-e94b108c2f253ada585f3b9f2323a6ccf6787ea0.tar.bz2 drakx-e94b108c2f253ada585f3b9f2323a6ccf6787ea0.tar.xz drakx-e94b108c2f253ada585f3b9f2323a6ccf6787ea0.zip |
- diskdrake
o keep current UUID when formatting ext2/ext3 (was already done for swap),
so that fstab on other distros continue to work
(requires e2fsprogs-1.41.1-2mnb2)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 5 | ||||
-rw-r--r-- | perl-install/fs/format.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 4 |
3 files changed, 10 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 36bdb2b20..9b132f0b2 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,8 @@ +- diskdrake + o keep current UUID when formatting ext2/ext3 (was already done for swap), + so that fstab on other distros continue to work + (requires e2fsprogs-1.41.1-2mnb2) + Version 11.38 - 8 September 2008 - diskdrake diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index 90f6cc89a..101ea4b80 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -96,7 +96,7 @@ sub part_raw { push @options, '-l', "Untitled"; } elsif (isAppleBootstrap($part)) { push @options, '-l', 'bootstrap'; - } elsif ($fs_type eq 'swap') { + } elsif (member($fs_type, 'swap', 'ext2', 'ext3')) { push @options, '-U', $part->{device_UUID} if $part->{device_UUID}; } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 5a2891b57..2134b777f 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,7 @@ +- keep current UUID when formatting ext2/ext3 (was already done for swap), + so that fstab on other distros continue to work + (requires e2fsprogs-1.41.1-2mnb2) + Version 11.38 - 8 September 2008 - do not size radio button that have a label thus preventing uneeded horizontal |