summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-08-15 20:36:28 +0000
committerMike Fulbright <msf@redhat.com>2003-08-15 20:36:28 +0000
commit71d57482995e470f5d8ccc2975fafa5b34ecfa22 (patch)
tree17131f637ff0fb6617add920219e25f73603b1b8 /rescue.py
parent51faca152f8d150807e8523c63009889dc9dc970 (diff)
downloadanaconda-71d57482995e470f5d8ccc2975fafa5b34ecfa22.tar.gz
anaconda-71d57482995e470f5d8ccc2975fafa5b34ecfa22.tar.xz
anaconda-71d57482995e470f5d8ccc2975fafa5b34ecfa22.zip
adjust matching criteria to be slightly relaxed
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 70fd32cc1..1ef2866de 100644
--- a/rescue.py
+++ b/rescue.py
@@ -98,7 +98,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