diff options
author | David Cantrell <dcantrell@redhat.com> | 2008-10-24 16:11:25 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2008-12-02 08:30:27 -1000 |
commit | 5b96a97a87a633ffb495989ca073430db58600b9 (patch) | |
tree | d88a4632f0f2cd0b6f7a64c82b462fc2b7c862e3 /textw | |
parent | 10c7e7f649061fa15eeaaa9e49c99e5d877a044f (diff) | |
download | anaconda-5b96a97a87a633ffb495989ca073430db58600b9.tar.gz anaconda-5b96a97a87a633ffb495989ca073430db58600b9.tar.xz anaconda-5b96a97a87a633ffb495989ca073430db58600b9.zip |
Say we are unable to configure the network interface (#467960)
In stage 2 when you get the 'Enable network interface' dialog, if
you select an interface that is not able to connect to a network,
we just wait and then take the user back to the Enable network
interface dialog. Before going back to the dialog, tell the user
we were unable to configure the selected interface.
Diffstat (limited to 'textw')
-rw-r--r-- | textw/netconfig_text.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/textw/netconfig_text.py b/textw/netconfig_text.py index c5aba62a3..bc1251fde 100644 --- a/textw/netconfig_text.py +++ b/textw/netconfig_text.py @@ -267,6 +267,8 @@ class NetworkConfiguratorText: w.pop() if result: break + else: + self.anaconda.intf.messageWindow(_("Error"), _("Error configuring network device"), _("Error configuring network device %s") % netdev.get('DEVICE')) self.screen.popWindow() return INSTALL_OK |