/etc/sysconfig/network-scripts/ifcfg-ltspbr0 k12linux.org Live Server spin has an installed file defining a private bridge. This bridge runs during LiveCD runtime just fine. However "Install to Hard Drive" rewrites this file to a nearly blank state removing the IP address and other options needed. dcantrell said Live Hard Drive install should skip this ifcfg-* rewriting step.
We need to do this: --- network.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/network.py b/network.py index b50605e..98cde5d 100644 --- a/network.py +++ b/network.py @@ -516,6 +516,9 @@ class Network: return False def write(self, instPath='', anaconda=None): + if flags.livecdInstall: + return + if len(self.netdevices.values()) == 0: return -- 1.6.0.3
*** This bug has been marked as a duplicate of bug 461550 ***