diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-05-13 08:41:02 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-05-13 08:41:02 +0000 |
commit | 4f9a0847bf8627db6e513ff41491713cab21c17c (patch) | |
tree | 482c36ec80a3433652c6c05376913f69b80afb55 /perl-install | |
parent | e79950d93af06b735b86548120dc60b2c5be6ee0 (diff) | |
download | drakx-4f9a0847bf8627db6e513ff41491713cab21c17c.tar drakx-4f9a0847bf8627db6e513ff41491713cab21c17c.tar.gz drakx-4f9a0847bf8627db6e513ff41491713cab21c17c.tar.bz2 drakx-4f9a0847bf8627db6e513ff41491713cab21c17c.tar.xz drakx-4f9a0847bf8627db6e513ff41491713cab21c17c.zip |
in manualFstab coming from auto_install.cfg, allow device /dev/XXX instead of simply XXX
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install2.pm | 5 |
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; |