diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/any.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index b4a888072..a9079d24b 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- include more partition fields in auto_inst.pl (mga#9784) - skip comments in /etc/crypttab (Colin, mga#9905) - services: o list 'shorewall-ipv6' along 'shorewall' diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index b311d4d91..96a844cc1 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -780,7 +780,7 @@ sub g_auto_install { require install::pkgs; $o->{default_packages} = install::pkgs::selected_leaves($::o->{packages}); - my @fields = qw(mntpoint fs_type size); + my @fields = qw(fs_type hd level mntpoint parts size VG_name); $o->{partitions} = [ map { my %l; @l{@fields} = @$_{@fields}; \%l; } grep { |