diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-07-19 20:50:33 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-07-19 20:50:33 +0000 |
commit | 9eb7d2cabead9552fc48627d3cb5ccb3ff23f28a (patch) | |
tree | 924a78b083e8b0a74417037be0afe22ca4272885 /iw | |
parent | 7b968e71502ec2ca873e7783dc5fe7e51c6fe52c (diff) | |
download | anaconda-9eb7d2cabead9552fc48627d3cb5ccb3ff23f28a.tar.gz anaconda-9eb7d2cabead9552fc48627d3cb5ccb3ff23f28a.tar.xz anaconda-9eb7d2cabead9552fc48627d3cb5ccb3ff23f28a.zip |
2006-07-19 Jeremy Katz <katzj@redhat.com>
* iw/autopart_type.py (PartitionTypeWindow.addIscsiDrive): Don't
use the username/pass stuff yet
* ui/iscsi-config.glade: Some minor tweaks, prepare for CHAP
username/password
Diffstat (limited to 'iw')
-rw-r--r-- | iw/autopart_type.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/iw/autopart_type.py b/iw/autopart_type.py index bccc66cf6..8b7cdb49e 100644 --- a/iw/autopart_type.py +++ b/iw/autopart_type.py @@ -112,6 +112,10 @@ class PartitionTypeWindow(InstallWindow): map(lambda x: sg.add_widget(dxml.get_widget(x)), ("iscsiAddrEntry", "iscsiInitiatorEntry")) + # we don't currently support username or password... + map(lambda x: dxml.get_widget(x).hide(), + ("userLabel", "passLabel", "userEntry", "passEntry")) + # get the initiator name if it exists and don't allow changing # once set if self.anaconda.id.iscsi.initiator: |