diff options
author | Mike Fulbright <msf@redhat.com> | 1999-11-29 20:55:14 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 1999-11-29 20:55:14 +0000 |
commit | d38bad2e2642346ba4d54c1238ddbcffedb583cd (patch) | |
tree | 3d9c68b7bd05c841c26f85ece690122b19c855bc /iw | |
parent | 6de40327d9b324968420272c3d3b296a62923e77 (diff) | |
download | anaconda-d38bad2e2642346ba4d54c1238ddbcffedb583cd.tar.gz anaconda-d38bad2e2642346ba4d54c1238ddbcffedb583cd.tar.xz anaconda-d38bad2e2642346ba4d54c1238ddbcffedb583cd.zip |
Further clipping out of X11 and mouse configuration during reconfig mode.
Dr Mike
Diffstat (limited to 'iw')
-rw-r--r-- | iw/xconfig.py | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/iw/xconfig.py b/iw/xconfig.py index b5af89424..c71315978 100644 --- a/iw/xconfig.py +++ b/iw/xconfig.py @@ -172,11 +172,16 @@ class XConfigWindow (InstallWindow): # if X not installed, just skip this step # if self.todo.reconfigOnly: - import rpm - db = rpm.opendb() - rc = db.findbyname ("XFree86") - if len(rc) == 0: - return None +# import rpm +# db = rpm.opendb() +# rc = db.findbyname ("XFree86") +# if len(rc) == 0: +# return None + +# +# for now we do not want to configure X11 in reconfig mode, so skip +# + return None else: if not self.todo.hdList.packages.has_key('XFree86') or \ |