diff options
author | Francois Pons <fpons@mandriva.com> | 2001-01-17 18:18:01 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-01-17 18:18:01 +0000 |
commit | 41d8895bf98c657ab0173ef12a6574261cda5b35 (patch) | |
tree | 7c7d0cb364abd4728f1bbc7215294e361ca664fb /perl-install/install_steps.pm | |
parent | 820ad44319c9a7b4246d11cd9ad3cfd927f58197 (diff) | |
download | drakx-41d8895bf98c657ab0173ef12a6574261cda5b35.tar drakx-41d8895bf98c657ab0173ef12a6574261cda5b35.tar.gz drakx-41d8895bf98c657ab0173ef12a6574261cda5b35.tar.bz2 drakx-41d8895bf98c657ab0173ef12a6574261cda5b35.tar.xz drakx-41d8895bf98c657ab0173ef12a6574261cda5b35.zip |
fixes with /tmp/rhimage and /tmp/image.
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 727c8f8c4..685379a7d 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -166,7 +166,7 @@ sub doPartitionDisksAfter { }; } - cat_("/proc/mounts") =~ m|(\S+)\s+/tmp/rhimage nfs| && + cat_("/proc/mounts") =~ m|(\S+)\s+/tmp/image nfs| && !grep { $_->{mntpoint} eq "/mnt/nfs" } @{$o->{manualFstab} || []} and push @{$o->{manualFstab}}, { type => "nfs", mntpoint => "/mnt/nfs", device => $1, options => "noauto,ro,nosuid,rsize=8192,wsize=8192" }; } |