From 94424dbe15b169f4c7b1cdcd6c061021c8d1c8b1 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 1 Aug 2011 18:50:43 +0000 Subject: (pack) spaces are not allowed between options in /etc/fstab (#2271) --- perl-install/NEWS | 2 ++ perl-install/fs/mount_options.pm | 1 + perl-install/install/NEWS | 1 + 3 files changed, 4 insertions(+) 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 -- cgit v1.2.1