diff options
author | David Cantrell <dcantrell@redhat.com> | 2008-10-23 19:12:25 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2008-10-23 19:12:25 -1000 |
commit | d5c0a7287fe810c06968687777bdca527a44258e (patch) | |
tree | adeb4e3f792221349f2ec4daa608c215d33c81d6 /textw | |
parent | e8fb372e15731f54698505a408bdd07d6f5db589 (diff) | |
download | anaconda-d5c0a7287fe810c06968687777bdca527a44258e.tar.gz anaconda-d5c0a7287fe810c06968687777bdca527a44258e.tar.xz anaconda-d5c0a7287fe810c06968687777bdca527a44258e.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 433f5d8c3..6a92782ee 100644 --- a/textw/netconfig_text.py +++ b/textw/netconfig_text.py @@ -266,6 +266,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 |