diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-03-05 09:41:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-03-05 09:41:37 +0000 |
commit | e1e7788cef9df92fd92788f4ef7806685d39eb86 (patch) | |
tree | db5cd012c1c7652fc776405cda1dffbd441a6bfb | |
parent | e4ff3e3b75c7dbb618b21f97cb234ab64a0dd930 (diff) | |
download | drakx-e1e7788cef9df92fd92788f4ef7806685d39eb86.tar drakx-e1e7788cef9df92fd92788f4ef7806685d39eb86.tar.gz drakx-e1e7788cef9df92fd92788f4ef7806685d39eb86.tar.bz2 drakx-e1e7788cef9df92fd92788f4ef7806685d39eb86.tar.xz drakx-e1e7788cef9df92fd92788f4ef7806685d39eb86.zip |
replacing automatic=method:disk with $param instead of adding $param (since $param already contains automatic=met:disk)
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 3f99c2f82..70675e4b7 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -795,7 +795,7 @@ sub getAndSaveAutoInstallFloppies { # hd_grub boot disk is different than others substInFile { s/^(\s*timeout.*)/timeout 1/; - s/(\s*automatic=method:disk)/$1 $param/ + s/\bautomatic=method:disk/$param/; } "$mountdir/menu.lst"; } elsif (-e "$mountdir/syslinux.cfg") { substInFile { |