diff options
author | David Cantrell <dcantrell@redhat.com> | 2008-09-23 21:59:13 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2008-09-24 16:09:22 -1000 |
commit | 8f49499b277fb0a85738b0b60d8eb2fc320de6ad (patch) | |
tree | ca3431c2635de92083a38a0fb59aa812c8a79908 /rescue.py | |
parent | 8984a2520ce64535b4c1ff0928b2469e1ae4a077 (diff) | |
download | anaconda-8f49499b277fb0a85738b0b60d8eb2fc320de6ad.tar.gz anaconda-8f49499b277fb0a85738b0b60d8eb2fc320de6ad.tar.xz anaconda-8f49499b277fb0a85738b0b60d8eb2fc320de6ad.zip |
Log error in rescue mode is network.bringUp() fails.
For now just log a message if bringUp() fails.
Diffstat (limited to 'rescue.py')
-rw-r--r-- | rescue.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -143,7 +143,8 @@ def startNetworking(network, intf): log.error("Error trying to start lo in rescue.py::startNetworking()") # start up dhcp interfaces first - network.bringUp() + if not network.bringUp(): + log.error("Error bringing up network interfaces") def runShell(screen = None, msg=""): if screen: |