From 4f9a0847bf8627db6e513ff41491713cab21c17c Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 13 May 2004 08:41:02 +0000 Subject: in manualFstab coming from auto_install.cfg, allow device /dev/XXX instead of simply XXX --- perl-install/install2.pm | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'perl-install/install2.pm') 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; -- cgit v1.2.1