diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/fs/get.pm | 5 | ||||
-rw-r--r-- | perl-install/install/NEWS | 3 |
3 files changed, 7 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 203d08104..11ffebdee 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,5 @@ - diskdrake: disbale encryption option for /boot +- match partitions when one of them as device_alias to the device of the other one Version 13.51 - 12 May 2011 diff --git a/perl-install/fs/get.pm b/perl-install/fs/get.pm index 8e49e91fa..461984431 100644 --- a/perl-install/fs/get.pm +++ b/perl-install/fs/get.pm @@ -144,7 +144,10 @@ sub is_same_hd { } else { $hd1->{device_LABEL} && $hd2->{device_LABEL} && $hd1->{device_LABEL} eq $hd2->{device_LABEL} || $hd1->{device_UUID} && $hd2->{device_UUID} && $hd1->{device_UUID} eq $hd2->{device_UUID} - || $hd1->{device} && $hd2->{device} && $hd1->{device} eq $hd2->{device}; + || $hd1->{device} && $hd2->{device} && $hd1->{device} eq $hd2->{device} + || $hd1->{device} && $hd2->{device_alias} && $hd1->{device} eq $hd2->{device_alias} + || $hd1->{device_alias} && $hd2->{device} && $hd1->{device_alias} eq $hd2->{device} + || $hd1->{device_alias} && $hd2->{device_alias} && $hd1->{device_alias} eq $hd2->{device_alias}; } } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 484e180b9..54d1694e2 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ -- disbale encryption option for /boot +- disable encryption option for /boot +- match partitions when one of them as device_alias to the device of the other one Version 13.50 - 06 May 2011 |