summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-02-29 17:02:58 -0500
committerChris Lumens <clumens@redhat.com>2008-03-04 13:01:47 -0500
commitfd64a8e650e0f3e94dfe6cc0d2d947944c852402 (patch)
treea8d4ee900248adf2275d841984bbb014783e271a /rescue.py
parent1fec05b59730136882bf4effa6ccdc24311fbba3 (diff)
downloadanaconda-fd64a8e650e0f3e94dfe6cc0d2d947944c852402.tar.gz
anaconda-fd64a8e650e0f3e94dfe6cc0d2d947944c852402.tar.xz
anaconda-fd64a8e650e0f3e94dfe6cc0d2d947944c852402.zip
Support stage2= for NFS installs.
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue.py b/rescue.py
index 803a1fb5e..f31eabb4e 100644
--- a/rescue.py
+++ b/rescue.py
@@ -133,7 +133,7 @@ def makeResolvConf(instPath):
# probably belongs somewhere else
#
def methodUsesNetworking(methodstr):
- for m in ['http://', 'ftp://', 'nfs:/', 'nfsiso:/']:
+ for m in ['http://', 'ftp://', 'nfs:', 'nfsiso:']:
if methodstr.startswith(m):
return 1
return 0