Alan Pevec
2009-Jul-01 00:32 UTC
[Ovirt-devel] [PATCH node] assume eth0 when BOOTIF is not specified
otherwise invalid "ifcfg-" file is generated --- scripts/ovirt-early | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-early index ac54e4b..b4de30e 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -67,6 +67,10 @@ configure_from_network() { fi fi fi + else + # for non-PXE boot when BOOTIF parameter is not specified + # otherwise default network config is invalid + DEVICE=eth0 fi # default oVirt network configuration: # bridge each ethernet device in the system -- 1.6.0.6
Darryl L. Pierce
2009-Jul-01 13:56 UTC
[Ovirt-devel] [PATCH node] assume eth0 when BOOTIF is not specified
On Wed, Jul 01, 2009 at 02:32:48AM +0200, Alan Pevec wrote:> otherwise invalid "ifcfg-" file is generated > --- > scripts/ovirt-early | 4 ++++ > 1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/scripts/ovirt-early b/scripts/ovirt-early > index ac54e4b..b4de30e 100755 > --- a/scripts/ovirt-early > +++ b/scripts/ovirt-early > @@ -67,6 +67,10 @@ configure_from_network() { > fi > fi > fi > + else > + # for non-PXE boot when BOOTIF parameter is not specified > + # otherwise default network config is invalid > + DEVICE=eth0 > fi > # default oVirt network configuration: > # bridge each ethernet device in the system > -- > 1.6.0.6Visual inspection: ACK. -- Darryl L. Pierce, Sr. Software Engineer @ Red Hat, Inc. Virtual Machine Management - http://www.ovirt.org/ Is fearr Gaeilge bhriste n? B?arla cliste. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: not available URL: <http://listman.redhat.com/archives/ovirt-devel/attachments/20090701/0fb96acf/attachment.sig>
Perry Myers
2009-Jul-06 22:45 UTC
[Ovirt-devel] [PATCH node] assume eth0 when BOOTIF is not specified
On 06/30/2009 08:32 PM, Alan Pevec wrote:> otherwise invalid "ifcfg-" file is generatedACK, hordes of startup errors go away with this patch included :) That and breth0 comes up properly Perry