diff options
Diffstat (limited to 'rescue')
-rwxr-xr-x | rescue/bin/guessmounts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/bin/guessmounts b/rescue/bin/guessmounts index 683e47c70..714d26251 100755 --- a/rescue/bin/guessmounts +++ b/rescue/bin/guessmounts @@ -63,7 +63,7 @@ foreach (@$normal_parts) { my $dev = devices::make($_->{device}); my $fs = $_->{fs_type}; - $fs or next; # no need to display an error if there's no fs... + member($fs, fs::type::true_local_fs_types()) or next; system("mount -t $fs $dev $target 2>/dev/null"); if (my $release_file = common::release_file($target)) { |