diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-08-01 18:50:43 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-08-01 18:50:43 +0000 |
commit | 94424dbe15b169f4c7b1cdcd6c061021c8d1c8b1 (patch) | |
tree | 03e968d4960cff5c0f325103adb4e861ba43b7c7 /perl-install | |
parent | 5f4ef2416fd53d27b2f58fec80f81e32fbc91651 (diff) | |
download | drakx-94424dbe15b169f4c7b1cdcd6c061021c8d1c8b1.tar drakx-94424dbe15b169f4c7b1cdcd6c061021c8d1c8b1.tar.gz drakx-94424dbe15b169f4c7b1cdcd6c061021c8d1c8b1.tar.bz2 drakx-94424dbe15b169f4c7b1cdcd6c061021c8d1c8b1.tar.xz drakx-94424dbe15b169f4c7b1cdcd6c061021c8d1c8b1.zip |
(pack) spaces are not allowed between options in /etc/fstab (#2271)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/fs/mount_options.pm | 1 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 082f3173b..56e51ce8a 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- disdrake: + o spaces are not allowed between options in /etc/fstab (#2271) - drakfont: o rename Ooo as LibreOffice (#461) o enable support for LibreOffice/gs/... only if available(#461) diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm index 82260358e..bae101679 100644 --- a/perl-install/fs/mount_options.pm +++ b/perl-install/fs/mount_options.pm @@ -102,6 +102,7 @@ sub pack_ { } sub pack { my ($part, $options, $unknown) = @_; + $unknown =~ s/ /,/g; $part->{options} = pack_($part, $options, $unknown) || 'defaults'; noreturn(); } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2f369c55c..6e610376f 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -2,6 +2,7 @@ - fix bootloader entries names - detect (at least some (eg: Compaq USB numpad) (#1099) - detect machines needing cpufreq +- spaces are not allowed between options in /etc/fstab (#2271) Version 13.58 - 27 May 2011 |