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/fs | |
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/fs')
-rw-r--r-- | perl-install/fs/mount_options.pm | 1 |
1 files changed, 1 insertions, 0 deletions
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(); } |