summaryrefslogtreecommitdiffstats
path: root/partIntfHelpers.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-07-11 20:33:10 +0000
committerMike Fulbright <msf@redhat.com>2003-07-11 20:33:10 +0000
commitc1fd3e800504bfe39e5814ca5c6bb54e3be367b7 (patch)
tree662401de3edb1c84ae1f71a9662d7a3ab32cbdf1 /partIntfHelpers.py
parent53d01a00c33a479cee1cda5c6bf81b3dda6b6534 (diff)
downloadanaconda-c1fd3e800504bfe39e5814ca5c6bb54e3be367b7.tar.gz
anaconda-c1fd3e800504bfe39e5814ca5c6bb54e3be367b7.tar.xz
anaconda-c1fd3e800504bfe39e5814ca5c6bb54e3be367b7.zip
relax condition that a "." not be in the mountpoint (we probably dont catch smart pants type things like "/...." or "/." now but you are an idiot if you do that)
Diffstat (limited to 'partIntfHelpers.py')
-rw-r--r--partIntfHelpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partIntfHelpers.py b/partIntfHelpers.py
index 7caf7da67..d7381901a 100644
--- a/partIntfHelpers.py
+++ b/partIntfHelpers.py
@@ -87,7 +87,7 @@ def sanityCheckMountPoint(mntpt, fstype, preexisting):
else:
if mntpt[0] != '/' or (len(mntpt) > 1 and mntpt[-1:] == '/'):
passed = 0
- elif mntpt.find(' ') > -1 or mntpt.find('.') > -1:
+ elif mntpt.find(' ') > -1:
passed = 0
if not passed: