1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-21 13:57:56 +03:00

Merge branch 'feature-413'

This commit is contained in:
Ruben S. Montero 2010-11-23 14:15:13 +01:00
commit 834da76d93

View File

@ -55,6 +55,7 @@ int XenDriver::deployment_description(
const VectorAttribute * nic;
string ip = "";
string mac = "";
string bridge = "";
string model = "";
@ -346,6 +347,7 @@ int XenDriver::deployment_description(
file << " '";
ip = nic->vector_value("IP");
mac = nic->vector_value("MAC");
bridge = nic->vector_value("BRIDGE");
model = nic->vector_value("MODEL");
@ -362,6 +364,12 @@ int XenDriver::deployment_description(
pre_char = ',';
}
if( !ip.empty() )
{
file << pre_char << "ip=" << ip;
pre_char = ',';
}
if( !bridge.empty() )
{
file << pre_char << "bridge=" << bridge;