diff options
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index b0e709d65..ac118cdc0 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -229,7 +229,7 @@ sub prepare_write_fstab { my $options = $_->{options} || 'defaults'; if (($_->{is_removable} || member($_->{fs_type}, qw(ntfs ntfs-3g))) && !$needed_to_boot && $_->{options} !~ /nofail/) { - "$options .= ',nofail'; + $options .= ',nofail'; } if ($_->{fs_type} eq 'cifs' && $options =~ /password=/ && !$b_keep_credentials) { |