summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r--perl-install/install2.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index 814f38546..4c74038fe 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -497,6 +497,11 @@ sub main {
}
} else {
log::l("auto install config file loaded successfully");
+
+ #- normalize for people not using our special scheme
+ foreach (@{$o->{manualFstab} || []}) {
+ $_->{device} =~ s!^/dev/!!;
+ }
}
}
$o->{interactive} ||= 'gtk' if !$::auto_install;