diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/raid.pm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 8458c1e26..29d00259b 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- bump max_nb() to 131 to cover mdadm managed imsm and ddf1 bios + fakeraids (containers defaults to >= 127 and partitions <=126) + Version 16.70 - 21 March 2015 - better fix for the scrollbar in the package installation details diff --git a/perl-install/raid.pm b/perl-install/raid.pm index abcca2b79..ee7cbbc4d 100644 --- a/perl-install/raid.pm +++ b/perl-install/raid.pm @@ -23,7 +23,7 @@ Manage regular soft RAID (MD=Multiple Drive). =cut -sub max_nb() { 31 } +sub max_nb() { 131 } sub check_prog { # perl_checker: require interactive |