1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-24 21:34:01 +03:00

Bug #1005: Deployment xml used old standard of libvirt xml

This commit is contained in:
Jaime Melis 2011-12-21 20:16:40 +01:00
parent 036e670a33
commit cda3e9dc3e

View File

@ -98,7 +98,10 @@ int LibVirtDriver::deployment_description_kvm(
// Starting XML document
// ------------------------------------------------------------------------
file << "<domain type='" << emulator << "'>" << endl;
file << "<domain type='"
<< emulator
<< "' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'>"
<< endl;
// ------------------------------------------------------------------------
// Domain name
@ -505,7 +508,7 @@ int LibVirtDriver::deployment_description_kvm(
if (!filter.empty())
{
the_filter = &filter;
}
}
else if (!default_filter.empty())
{
the_filter = &default_filter;
@ -514,9 +517,9 @@ int LibVirtDriver::deployment_description_kvm(
if ( the_filter != 0 )
{
file <<"\t\t\t<filterref filter='"<< *the_filter <<"'>"<<endl;
file << "\t\t\t\t<parameter name='IP' value='"
file << "\t\t\t\t<parameter name='IP' value='"
<< ip << "'/>" << endl;
file << "\t\t\t</filterref>" << endl;
file << "\t\t\t</filterref>" << endl;
}
}