diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/any.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 1f4d042fd..a3c0ee35e 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- include mount options in auto_inst.pl + Version 15.47 - 30 April 2013 - include more partition fields in auto_inst.pl (mga#9784) diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 96a844cc1..5402f7aa8 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(fs_type hd level mntpoint parts size VG_name); + my @fields = qw(fs_type hd level mntpoint options parts size VG_name); $o->{partitions} = [ map { my %l; @l{@fields} = @$_{@fields}; \%l; } grep { |