diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-04-30 20:24:21 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-04-30 20:24:21 +0000 |
commit | a7a21a3f3673f4cc767d06701e19a38543479cd4 (patch) | |
tree | 14c076184eccf9e42480808aa98c3953f3077052 | |
parent | 432fb9ae7fc9dabee3174d62f5fe217e45582866 (diff) | |
download | drakx-backup-do-not-use-a7a21a3f3673f4cc767d06701e19a38543479cd4.tar drakx-backup-do-not-use-a7a21a3f3673f4cc767d06701e19a38543479cd4.tar.gz drakx-backup-do-not-use-a7a21a3f3673f4cc767d06701e19a38543479cd4.tar.bz2 drakx-backup-do-not-use-a7a21a3f3673f4cc767d06701e19a38543479cd4.tar.xz drakx-backup-do-not-use-a7a21a3f3673f4cc767d06701e19a38543479cd4.zip |
include mount options in auto_inst.pl
-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 { |