Mark Wu has uploaded a new change for review. Change subject: fix bootproto preservation for bridgeless network ......................................................................
fix bootproto preservation for bridgeless network bootproto should be also preserved for bridgeless network as what the commit 948057 fixed for static ip address. Change-Id: Ie8bb5fd9fc6ad69cf120d62264d73490b65b82d7 Signed-off-by: Mark Wu <[email protected]> --- M vdsm/configNetwork.py 1 file changed, 2 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/56/11356/1 diff --git a/vdsm/configNetwork.py b/vdsm/configNetwork.py index 27d722a..4dccabf 100755 --- a/vdsm/configNetwork.py +++ b/vdsm/configNetwork.py @@ -477,6 +477,7 @@ ipaddr = confParams.get('IPADDR', None) netmask = confParams.get('NETMASK', None) gateway = confParams.get('GATEWAY', None) + bootproto = confParams.get('BOOTPROTO', None) if not mtu: mtu = confParams.get('MTU', None) if mtu: @@ -510,6 +511,7 @@ ipaddr = confParams.get('IPADDR', None) netmask = confParams.get('NETMASK', None) gateway = confParams.get('GATEWAY', None) + bootproto = confParams.get('BOOTPROTO', None) if not mtu: mtu = confParams.get('MTU', None) if mtu: -- To view, visit http://gerrit.ovirt.org/11356 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ie8bb5fd9fc6ad69cf120d62264d73490b65b82d7 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Mark Wu <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
